Question:

Which of the following search uses the problem specific knowledge beyond the definition of the problem ?

Show Hint

"Informed" means the agent has a "hint" (heuristic) about the direction of the goal, whereas "Uninformed" agents just wander systematically.
Updated On: Aug 6, 2026
  • Informed search
  • Depth first search
  • Breadth first search
  • Uninformed search
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

Concept:
• Search algorithms in AI are categorized by the amount of information they possess about the goal.
• Uninformed search (blind search) only has the problem definition (start, goal test, successor function).
• Informed search (heuristic search) uses additional guidance called a heuristic function \(h(n)\).

Step 1:
Define Uninformed Search
Algorithms like BFS and DFS (Options B and C) explore the state space tree without knowing if one non-goal node is "more promising" than another.
They follow a fixed strategy (expanding the shallowest or deepest node).
They only use the basic definition of the problem.

Step 2:
Define Informed Search
Informed search (Option A) uses domain-specific knowledge to estimate the distance to the goal.
This is represented by a heuristic function. For example, in pathfinding, the "Straight Line Distance" is specific knowledge that helps the search prioritize nodes in the right direction.
This knowledge is "beyond the definition" because it requires understanding the semantics of the states (e.g., coordinates in space).

Step 3:
Identify the correct match
Since the question asks for the search that uses "problem specific knowledge", Informed search is the only appropriate term.
Was this answer helpful?
0
0

Top CUET PG Data Science A.I Cyber Security and Computer Sci. Questions

View More Questions

Top CUET PG Artificial Intelligence Questions

View More Questions