Contents

Introduction:


What is the main task of a problem-solving agent?
a) Solve the given problem and reach to goal
b) To find out which sequence of action will get it to the goal state
c) both a and b
d) None of these

c

Explanation: The problem-solving agents are one of the goal-based agents.


What is state space?
a) The whole problem
b) Your Definition to a problem
c) Problem you design
d) Representing your problem with variable and parameter

d

The problem-solving agent with several immediate options of unknown value can decide what to do by just examining different possible sequences of actions that lead to states of known value, and then choosing the best sequence. This process of looking for such a sequence is called Search.
a) True                                 
b) False

a

Explanation: Refer to the definition of problem-solving agent.


A search algorithm takes…….. as an input and returns……..as an output.
a) Input, output  
b) Problem, solution
c) Solution, problem
d) Parameters, sequence of actions

b

Explanation: A search algorithm takes input as a problem and returns a solution to the problem as an output.


A problem in a search space is defined by one of this state.
a) Initial state                     
b) Last state
c) Intermediate state
d) All of these

a

Explanation: A problem has four components initial state, goal test, set of actions, path cost.