AI - Possible 2 Marks With Answers
AI - Possible 2 Marks With Answers
2 MARKS
UNIT I INTELLIGENT AGENTS AND BLIND SEARCH:
Q4: What was the significance of the Dartmouth Conference (1956) in AI?
A: The Dartmouth Conference marked the official beginning of AI as a field of study, bringing
researchers together to discuss machine intelligence.
Q24: Which search method is more suitable for finding a solution in an infinite state space?
A: DFS can get stuck in an infinite loop, while BFS systematically explores all levels, making it
more suitable for infinite state spaces.
Q25: What is Depth-Bounded DFS?
A: Depth-Bounded DFS is a variation of DFS where a depth limit is set to prevent exploring
deep or infinite paths.
Q26: How does Depth-Bounded DFS solve the problem of infinite loops in DFS?
A: By setting a maximum depth, it ensures the search does not continue indefinitely in deep or
infinite state spaces.
Q16: How does Beam Search differ from Best First Search?
A: Beam Search restricts the number of nodes explored at each step, while Best First Search
expands all promising nodes.
Q10: How does Iterated Hill Climbing improve standard Hill Climbing?
A: It avoids getting stuck in local maxima by restarting the search from different initial positions.
Minimax Algorithm
Alpha-Beta Pruning
B Search*
Q16: When is Backward State Space Planning more efficient than Forward Planning?
A: When the number of backward possibilities is smaller than forward possibilities, reducing the
search space.
A: FOL extends Propositional Logic by introducing quantifiers (∀, ∃) and predicates to express
Q7: What is First-Order Logic (FOL)?
complex relationships.