And Correct Answers (Verified Answers) Plus
Rationale 2026 Q&A
SECTION 1: FOUNDATIONS OF AI
1. What is Artificial Intelligence (AI)?
A) The simulation of human intelligence processes by machines, especially
computer systems
B) A type of programming language
C) A database management system
D) A networking protocol
Correct Answer: A | Rationale: AI is the broad field of computer science focused
on creating systems that can perform tasks that typically require human
intelligence—including learning, reasoning, problem-solving, perception, and
language understanding.
2. Who is considered the "father of AI" for coining the term in 1956?
A) Alan Turing
B) John McCarthy
C) Marvin Minsky
D) Geoffrey Hinton
Correct Answer: B | Rationale: John McCarthy organized the Dartmouth
Conference in 1956, where he first coined the term "Artificial Intelligence." Alan
Turing (A) proposed the Turing Test; Marvin Minsky (C) was a co-founder of MIT's
AI Lab; Geoffrey Hinton (D) is known as the "godfather of deep learning."
3. What is the Turing Test?
A) A test of a machine's ability to exhibit intelligent behavior indistinguishable
from a human
B) A test of machine learning accuracy
,C) A test of computer processing speed
D) A test of network security
Correct Answer: A | Rationale: The Turing Test, proposed by Alan Turing in 1950,
evaluates whether a machine can exhibit intelligent behavior equivalent to, or
indistinguishable from, that of a human. A human evaluator converses with both a
machine and a human; if the evaluator cannot reliably tell which is which, the
machine passes.
4. What is the difference between Artificial Intelligence (AI), Machine Learning
(ML), and Deep Learning (DL)?
A) AI is the broadest; ML is a subset of AI; DL is a subset of ML
B) ML is the broadest; AI is a subset of ML; DL is a subset of AI
C) They are all the same
D) DL is the broadest; ML is a subset of DL; AI is a subset of ML
Correct Answer: A | Rationale: AI is the overarching field. Machine Learning is a
subset of AI where systems learn from data without explicit programming. Deep
Learning is a subset of ML that uses neural networks with many layers (deep
neural networks).
5. What is a "strong AI" (Artificial General Intelligence - AGI)?
A) An AI system that can perform any intellectual task that a human can
B) An AI system designed for a specific task (e.g., playing chess)
C) An AI system that is faster than humans
D) An AI system that can only recognize images
Correct Answer: A | Rationale: Strong AI (AGI) refers to a hypothetical AI system
with the ability to understand, learn, and apply intelligence across a wide range of
tasks at a human level or beyond. Weak AI (narrow AI, B) is designed for specific
tasks like game playing, image recognition, or language translation.
6. What is a "weak AI" (narrow AI)?
A) An AI system that can perform any intellectual task a human can
B) An AI system designed for a specific, narrow task
,C) An AI system that is not intelligent
D) An AI system that only runs on weak hardware
Correct Answer: B | Rationale: Narrow AI (weak AI) is designed and trained for a
particular task—e.g., facial recognition, voice assistants, recommendation
systems. It cannot generalize beyond its specific domain. Almost all current AI
systems are narrow AI.
7. What is the "Chinese Room" argument?
A) A thought experiment by John Searle arguing that a program executing
instructions cannot produce genuine understanding
B) A Chinese translation algorithm
C) A type of neural network
D) A robotics framework
Correct Answer: A | Rationale: The Chinese Room argument (Searle, 1980)
challenges the idea that a computer running a program can truly understand
language. It argues that syntactically manipulating symbols (as a program does)
does not equate to semantic understanding—a key debate in the philosophy of AI.
8. What is the difference between supervised and unsupervised learning?
A) Supervised learning uses labeled data; unsupervised learning uses unlabeled
data
B) Unsupervised learning uses labeled data; supervised learning uses unlabeled
data
C) They are the same
D) Supervised learning is for classification; unsupervised is for regression only
Correct Answer: A | Rationale: Supervised learning trains models on labeled data
(input-output pairs) to learn a mapping from inputs to outputs. Unsupervised
learning finds patterns in unlabeled data (e.g., clustering, dimensionality
reduction).
9. What is reinforcement learning?
A) A learning paradigm where an agent learns by interacting with an environment
and receiving rewards or penalties
, B) A learning paradigm that uses labeled data
C) A learning paradigm that uses unlabeled data
D) A learning paradigm that does not use any data
Correct Answer: A | Rationale: Reinforcement Learning (RL) is a type of machine
learning where an agent learns to make decisions by taking actions in an
environment and receiving feedback (rewards or punishments). The goal is to
maximize cumulative reward. Examples include game-playing AI (AlphaGo) and
robotics.
10. What is the difference between inductive and deductive reasoning in AI?
A) Inductive reasoning generalizes from specific observations; deductive reasoning
derives specific conclusions from general rules
B) Deductive reasoning generalizes from observations; inductive reasoning derives
specific conclusions
C) They are the same
D) Inductive reasoning is used in ML; deductive reasoning is not used in AI
Correct Answer: A | Rationale: Inductive reasoning involves deriving general
principles from specific examples (e.g., machine learning learns patterns from
data). Deductive reasoning involves applying general rules to reach specific
conclusions (e.g., rule-based systems, expert systems).
11. What is a knowledge base in AI?
A) A centralized repository of information, facts, and rules used for reasoning
B) A database of images
C) A collection of algorithms
D) A neural network architecture
Correct Answer: A | Rationale: A knowledge base is a structured repository of
domain-specific knowledge, including facts, rules, and relationships. It is used in
expert systems and knowledge-based AI systems to support reasoning and
decision-making.
12. What is an agent in AI?
A) An entity that perceives its environment and takes actions to achieve goals