Approaches to AI: Turing Test, rational agents, state-space representation, heuristic search, game playing and alpha–beta pruning. - Question Bank

1. The core idea of the Turing Test is to assess if a machine can exhibit intelligence by:
A) Solving complex mathematical problems.
B) Performing physical tasks.
C) Engaging in natural language conversation indistinguishably from a human.
D) Learning from large datasets.
2. Which of the following scenarios would most benefit from Alpha-Beta Pruning?
A) A simple game with a very small game tree.
B) A complex game like Chess or Go with a large branching factor.
C) A single-agent search problem.
D) A problem where the goal is easily reachable.
3. What is a 'terminal state' in the context of state-space search and game playing?
A) A state from which no further actions can be taken.
B) A state that represents a goal.
C) A state that has been visited before.
D) A state that requires significant computation to reach.
4. A heuristic function h(n) = 0 for all n is equivalent to which search algorithm?
A) Greedy Best-First Search
B) Depth-First Search
C) Breadth-First Search
D) A* Search with uniform cost search behavior
5. The concept of 'planning' in AI relates to:
A) The immediate reaction to a percept.
B) Finding a sequence of actions to achieve a goal.
C) Understanding natural language.
D) Recognizing patterns in data.
6. In Minimax, if a MIN node has children with values {3, 5, 2}, what value will the MIN node choose?
A) 5
B) 3
C) 2
D) 4
7. What is the primary drawback of Breadth-First Search (BFS) for very large state spaces?
A) It can get stuck in infinite loops.
B) It requires a good heuristic function to be efficient.
C) It requires a large amount of memory to store the frontier.
D) It does not guarantee optimality.
8. Which of the following is a characteristic of the 'state' in a state-space search?
A) It is always the final solution.
B) It represents a unique configuration or situation in the problem.
C) It is defined by the sequence of actions taken.
D) It is an estimate of the path cost.
9. An agent that operates in an environment that is 'stochastic' means:
A) The environment's current state is completely known.
B) The outcome of actions is predictable with certainty.
C) The outcome of actions is uncertain and probabilistic.
D) The environment does not change over time.
10. The Turing Test is primarily a test of:
A) Computational speed
B) Learning capability
C) Linguistic intelligence
D) Emotional intelligence
11. What is the term for a game tree search technique that aims to improve upon Minimax by eliminating redundant exploration?
A) Hill Climbing
B) Beam Search
C) Alpha-Beta Pruning
D) Genetic Algorithms
12. Which of these is a common heuristic for the 8-puzzle problem?
A) The number of moves made so far.
B) The Manhattan distance of the tiles from their goal positions.
C) The Euclidean distance of the tiles from their goal positions.
D) The sum of the values of the tiles.
13. The 'frame problem' in AI, particularly relevant to state-space representation, refers to:
A) The difficulty in representing the initial state of a problem.
B) The challenge of efficiently determining which facts change and which remain the same when an action is performed.
C) The problem of choosing the best action to achieve a goal.
D) The limitation of finite state spaces.
14. What is the primary goal of the 'MAX' player in the Minimax algorithm?
A) To minimize the MIN player's score.
B) To maximize its own score, assuming the MIN player plays optimally to minimize it.
C) To reach the terminal state as quickly as possible.
D) To explore as many branches as possible.
15. Which search algorithm explores nodes in increasing order of path cost, guaranteeing optimality?
A) Depth-First Search
B) Breadth-First Search
C) Uniform Cost Search
D) Greedy Best-First Search
16. In the context of state-space search, an 'action' typically represents:
A) A specific configuration of the problem.
B) A transition between states.
C) The cost associated with a state.
D) The final solution.
17. An agent that has a 'model of the world' and uses it to predict the effect of actions is known as a:
A) Simple reflex agent
B) Model-based agent
C) Goal-based agent
D) Utility-based agent
18. The concept of 'strong AI' versus 'weak AI' is related to the interpretation of success in which test?
A) Winograd Schema Challenge
B) Turing Test
C) Ishihara Test
D) Cambridge Health Alliance Turing Test
19. In Alpha-Beta Pruning, what is the condition under which a MAX node's value is determined?
A) When any of its children has a value less than or equal to the current MAX node's value.
B) When all of its children have been evaluated.
C) When any of its children has a value greater than or equal to the current MIN node's value.
D) When the depth limit is reached.
20. Which search algorithm is guaranteed to find the optimal solution if the heuristic is admissible?
A) Depth-First Search
B) Greedy Best-First Search
C) A* Search
D) Breadth-First Search
21. Which of the following best describes the 'state' in a state-space representation for a navigation problem?
A) The map of the entire area.
B) The agent's current location and orientation.
C) The sequence of turns taken.
D) The destination point.
22. A 'percept' in the context of intelligent agents refers to:
A) The action taken by the agent.
B) The sequence of inputs received from the environment.
C) The internal state of the agent.
D) The goal the agent is trying to achieve.
23. Consider the Turing Test. If a machine can fool an interrogator into believing it is human, it implies:
A) The machine possesses consciousness.
B) The machine has achieved human-level intelligence in conversational ability.
C) The machine has a perfect understanding of human emotions.
D) The machine has surpassed human intelligence.
24. What is the primary advantage of Alpha-Beta Pruning over a standard Minimax search?
A) It guarantees finding a solution faster.
B) It explores fewer nodes in the game tree, making the search more efficient.
C) It can handle games with perfect information more effectively.
D) It is simpler to implement.
25. A heuristic function that overestimates the cost to reach the goal is problematic because:
A) It might lead to an infinite loop.
B) It may cause the search algorithm to miss the optimal solution.
C) It requires more memory.
D) It slows down the search process significantly.
26. Which of the following is an example of a problem that can be effectively solved using state-space representation and search algorithms?
A) Image recognition
B) Natural Language Understanding
C) Solving the Tower of Hanoi puzzle
D) Playing chess
27. In a two-player zero-sum game, the Minimax algorithm assumes:
A) Both players cooperate to reach a mutually beneficial outcome.
B) One player tries to maximize their score, and the other tries to minimize it.
C) Both players try to maximize their own scores independently.
D) The game has no defined winner or loser.
28. What is the difference between an 'admissible' and a 'consistent' heuristic?
A) A consistent heuristic is always admissible, but an admissible heuristic is not always consistent.
B) A consistent heuristic is always admissible, and an admissible heuristic is always consistent.
C) An admissible heuristic is always consistent, but a consistent heuristic is not always admissible.
D) There is no relationship between admissibility and consistency.
29. A state-space representation where the number of states is finite but potentially very large is characteristic of problems like:
A) Simple arithmetic calculations
B) Robotics path planning
C) Finding the maximum of a simple linear function
D) Sorting a small list of numbers
30. The ability of an AI system to learn and adapt its behavior based on new information is a key aspect of which AI approach?
A) Turing Test
B) Rational Agents
C) Heuristic Search
D) Game Playing
31. What is the primary purpose of the 'evaluation function' in game playing AI algorithms like Minimax with Alpha-Beta Pruning?
A) To determine the legal moves from a given state.
B) To assign a numerical score to a board position, estimating its favorability.
C) To prune branches that lead to suboptimal outcomes.
D) To calculate the depth of the game tree.
32. Which search algorithm guarantees finding the shortest path in terms of the number of edges (or steps) in an unweighted graph?
A) Depth-First Search (DFS)
B) Breadth-First Search (BFS)
C) Greedy Best-First Search
D) Iterative Deepening Depth-First Search (IDDFS)
33. In state-space search, the 'path cost' function, g(n), typically represents:
A) An estimate of the cost from the current node to the goal.
B) The actual cost of the path from the initial state to node n.
C) The number of nodes expanded so far.
D) The heuristic value of the node.
34. Which of the following best describes a 'reflex agent'?
A) An agent that plans long-term actions.
B) An agent that acts based solely on the current percept, without considering history.
C) An agent that learns from experience.
D) An agent that uses a world model.
35. The 'imitation game' is another name for which AI test?
A) The Chinese Room Argument
B) The Turing Test
C) The Winograd Schema Challenge
D) The Lovelace Test
36. In Alpha-Beta Pruning, if a node at depth 'd' is found to have a move that is worse than a previously explored option at the same level, what happens?
A) The search continues down that branch to find the absolute minimum.
B) The entire subtree rooted at that node is pruned.
C) The algorithm backtracks to the parent node.
D) The heuristic function is re-evaluated.
37. An 'admissible' heuristic function h(n) in AI search guarantees that:
A) h(n) is always greater than or equal to the true cost from node n to the goal.
B) h(n) is always less than or equal to the true cost from node n to the goal.
C) h(n) is always equal to the true cost from node n to the goal.
D) h(n) is always consistent.
38. Consider the 8-puzzle problem. The 'state' in its state-space representation would typically be:
A) The sequence of moves made to reach the current configuration.
B) The current arrangement of the tiles on the board.
C) The goal configuration of the tiles.
D) The number of moves made so far.
39. An agent that perceives its environment through sensors and acts upon that environment through actuators is known as a:
A) Software agent
B) Rational agent
C) Intelligent agent
D) Perceptual agent
40. Which of the following is a limitation of the Turing Test?
A) It is too easy for machines to pass.
B) It only tests linguistic intelligence, not other forms.
C) It requires a physical embodiment for the machine.
D) It cannot be simulated by computers.
41. What is the fundamental principle behind the Minimax algorithm in game playing?
A) To maximize the opponent's score.
B) To assume the opponent will always make the worst possible move for you.
C) To minimize the number of moves taken.
D) To find a move that is best assuming the opponent plays optimally to counter your moves.
42. What is the main advantage of using a heuristic function in AI search?
A) It guarantees finding the optimal solution.
B) It significantly reduces the search space and speeds up the search process.
C) It requires no prior knowledge about the problem.
D) It is always admissible and consistent.
43. In a state-space search, what is a 'node' typically used to represent?
A) A specific action taken by the agent.
B) A potential solution to the problem.
C) A configuration or situation of the problem.
D) The cost of traversing a path.
44. A 'fully observable' environment in the context of rational agents means:
A) The agent can only sense a part of the environment.
B) The agent's percept sequence is sufficient to identify the best action.
C) The agent must explore to discover the environment's state.
D) The environment changes unpredictably.
45. According to the Turing Test, if a human interrogator cannot reliably distinguish between a human and a machine after a series of questions, what can be concluded?
A) The machine has achieved consciousness.
B) The machine has passed the test and demonstrated human-like intelligence.
C) The machine has superior processing power.
D) The interrogator is not skilled enough.
46. What is the primary goal of Alpha-Beta Pruning in game playing AI?
A) To explore every possible move in the game tree.
B) To reduce the number of nodes evaluated in a minimax search by eliminating branches that are provably worse than other options.
C) To guarantee finding the optimal move in a zero-sum game.
D) To increase the depth of the game tree search.
47. Which type of search algorithm explores the most promising nodes first based on some evaluation function?
A) Breadth-First Search
B) Depth-First Search
C) Heuristic Search
D) Uniform Cost Search
48. What does 'state-space representation' in AI typically involve?
A) Representing a problem as a set of rules and facts.
B) Representing a problem as a sequence of actions.
C) Representing a problem as a graph where nodes are states and edges are actions.
D) Representing a problem using only natural language descriptions.
49. In the context of Artificial Intelligence, what is a 'rational agent' defined as?
A) An agent that always acts randomly.
B) An agent that acts so as to achieve the best outcome or the best expected outcome.
C) An agent that mimics human emotions.
D) An agent that can only perform pre-programmed tasks.
50. Who proposed the Turing Test as a measure of a machine's ability to exhibit intelligent behavior equivalent to, or indistinguishable from, that of a human?
A) Marvin Minsky
B) John McCarthy
C) Alan Turing
D) Herbert Simon