Unit2 - Subjective Questions

INT428 • Practice Questions with Detailed Answers

1

Define the concept of Problem Formulation in Artificial Intelligence. What are the five essential components required to formulate a search problem well?

2

Explain the State Space Search approach using the Water Jug Problem as an example. How is the state represented?

3

Distinguish between Breadth-First Search (BFS) and Depth-First Search (DFS) in terms of their strategy, completeness, and complexity.

4

What is Iterative Deepening Search (IDS)? Why is it preferred over BFS and DFS in certain scenarios?

5

Explain the *A Search Algorithm**. How does it evaluate nodes, and what condition ensures its optimality?

6

Define Heuristic Function in the context of AI. Explain the properties of Admissibility and Consistency.

7

Compare Greedy Best-First Search and *A Search**.

8

What is a Constraint Satisfaction Problem (CSP)? Define Variables, Domains, and Constraints with an example.

9

Describe the Backtracking Search algorithm for solving Constraint Satisfaction Problems.

10

Explain the Hill Climbing algorithm. Discuss the problems of Local Maxima, Plateaux, and Ridges.

11

Describe Gradient Descent as an optimization method. Differentiate between Batch Gradient Descent and Stochastic Gradient Descent (SGD).

12

What are Metaheuristics? Briefly explain Simulated Annealing.

13

Explain the working of Genetic Algorithms (GA) focusing on the operators: Selection, Crossover, and Mutation.

14

Discuss the concepts of Time Complexity and Space Complexity in AI search algorithms. What variables are typically used to express them?

15

Define the Solution Metrics used to evaluate search algorithms: Completeness, Optimality, Time Complexity, and Space Complexity.

16

What is Reinforcement Learning (RL)? Define the key components: Agent, Environment, State, Action, and Reward.

17

Explain the Exploration vs. Exploitation trade-off in Reinforcement Learning.

18

What is a Markov Decision Process (MDP)? Explain its tuple representation .

19

Formulate the 8-Puzzle Problem in terms of states, operators, goal test, and path cost.

20

Explain the concept of Data Requirements in the context of AI problem design. How does the quality and quantity of data affect problem solving?