Cat I Ai 2025
Cat I Ai 2025
A) Problem-solving B) Automation
A) Learning B) Reasoning
A) Sensors B) Actuators
C) Goal-based D) Utility-based
C) Stochastic D) Dynamic
C) Databases D) Compilers
A) Super AI B) Narrow AI
C) General AI D) Reactive AI
A) Time B) Accuracy
27. Which search method guarantees the shortest path (if cost is same)?
A) DFS B) BFS
C) A* D) UCS
2 MARKS
→ Artificial Intelligence is the branch of computer science that aims to create machines that can
mimic human intelligence such as learning, reasoning, and problem-solving.
2. List any four goals of Artificial Intelligence.
→ An agent that perceives its environment through sensors and acts upon that environment using
actuators to achieve specific goals.
5. Write any two differences between Simple Reflex Agents and Model-Based Agents.
→ Reflex Agents act only on current percepts; Model-Based Agents use internal models to make
decisions based on past and present percepts.
→ A search algorithm is a method used to navigate through problem spaces to find a solution path
from the initial state to the goal state.
→ BFS is a search algorithm that explores all nodes at the present depth level before moving to the
next level.
→ A heuristic function estimates the cost from the current node to the goal node in a search
algorithm.
→ DFS goes deep into the tree first, using less memory; BFS explores level by level but uses more
memory.