Skip to main content

Featured

WHAT IS ARTIFICIAL INTELLIGENCE

AI is the most recent field in Science and Engineering. 
The term "AI" was first coined in 1956 by John McCarthy at Dartmouth College, Hanover, New Hampshire. If you want to make discoveries and innovations, AI is the best place to achieve your destiny. AI is the newest, and still, we have a long way to go to be the best at this subject. AI is helpful for any education and generally every part of life. AI has applied for DNA or Protein Structure prediction to discovering new planets, stars, and galaxies in Space.

What is AI?
If a human interacts with a computer without knowing that it's a computer, and if they couldn't figure out whether the response came from a human or a computer. It is called Artificial Intelligence.
(According to Turing Test proposed by Alan Turing, 1950) 
Turing gave six capabilities that a computer must pass to be called Intelligent:
• NATURAL LANGUAGE PROCESSING (NLP) to enable it to communicate successfully in English
• KNOWLEDGE REPRESENTATION to store what it knows or hears
• AUTOMATED REASONING to use the stored information to answer questions and to draw new conclusions
• MACHINE LEARNING to adapt to the latest circumstances and to detect and extrapolate patterns

These four complete the Turing Test, but still, we have got perceptual abilities left. Therefore, the so-called Total Turing Test completes that part too, including:
• COMPUTER VISION to perceive objects, and
• ROBOTICS to manipulate objects and move about

Computer Scientists have almost passed the Turing Test, but the Total Turing Test still needs more work to be done. So if you are interested and desire to do something creative and innovative, do not stop visiting my blog . Uhhh, I meant, don't stop learning AI, but you can do that as well . Yup, I know there are plenty of philosophical and historical facts, but we want to get into action. If you love to read the history and philosophies, click the link below and buy that book. The book is comprehensive and covers every topic very nicely. If you are a hardcore reader, the book is for you, or stick to my blog.

Buy it on Amazon.in (For India):



Buy Hardcover Book or Paperback on Amazon.com from the links down below. (For US)

Comments

  1. "The one who can explain you in a simple way is one who know the concept very well" by albert einstein.
    thus, i just want to say that this blog is amazing.complexity has been decreased. Keep on bro!!

    ReplyDelete

Post a Comment

I Hope You Like My Work.
For any queries or FeedBack drop a comment in the comment section.

Popular posts from this blog

7 ways to stay focused on IIT-JEE / Standardized Tests

7 Ways To Stay Focused &  Reach Your Goal Stop Multitasking:-   We all want to complete our all tasks but you have to understand, is it necessary to complete them all together. Your mind is much stressed out when you do multitasking and for your mental health, you have to be so aware of nutrition and all. Especially when you had improper sleep your mind is already stressed out so you must not do multitasking at these times. Try to achieve completion in a single task, it will arise some satisfaction for you that you have completed one task. Whereas, if you do multitasking, things will take time to get completed, and this might make you uncomfortable and demoralized. So, I recommend you to do one task at a time and not to multi-task. Block Out Your Days:- Blocking out days is referring to fix some time period for a particular task and this is going to make a great impact on your work attitude and preparation for IIT-JEE too. Try to make some routine such as you must have to study mat

SQL Queries

create database school_data; use school_data; create table admins (first_name varchar(20) Not Null,  middle_initial varchar(1) Not null,  last_name varchar(20) NOt NULL,  DOB varchar(10) NOt NULL,  phone varchar(10) Primary key,  alt_phone varchar(10),  email varchar(150) NOt NULL,  designation varchar(60) NOt NULL,  subjects_taken varchar(150),  classes_taken varchar(20)); create table class_teachers (first_name varchar(20) Not Null,  middle_initial varchar(1) Not null,  last_name varchar(20) NOt NULL,  DOB varchar(10) NOt NULL,  phone varchar(10) Primary key,  alt_phone varchar(10),  email varchar(150) NOt NULL,  subjects_taken varchar(150),  class_teacher_of varchar(2) Not Null,  classes_taken varchar(20)); create table student_stats (ADMISSION_NO varchar(15) PRImary key, ROLL_NO int NOt NULL, GRADE varchar(10) NOt NULL, SECTION varchar(1) NOt NULL, DOB varchar(10) NOt NULL, FIRST_NAME varchar(30) NOt NULL, FATHERS_NAME varchar(30), MOTHERS_NAME varchar(30), LAST_NAME varchar(30) NO