Contents

What is the major component/components for measuring the performance of problem solving?
a) Completeness 
b) Optimality
c) Time and Space complexity
d) All of these

d

Explanation: For best performance consideration of all component is necessary.


A production rule consists of …………
a) A set of Rule   
b) A sequence of steps
c) Set of Rule & sequence of steps
d) Arbitrary representation to problem

c

Explanation: When you are trying to solve a problem, you should design how to get a step-by-step solution with constraints condition to your problem, e.g Chess board problem.


Which search method takes less memory?

a) Depth-First Search
b) Breadth-First search
c) Linear Search  
d) Optimal search

a

Explanation: Depth-First Search takes less memory since only the nodes on the current path are stored, but in Breadth First Search, all of the tree that has generated must be stored.


Which is the best way to go for Game playing problem?
a) Linear approach
b) Heuristic approach (Some knowledge is stored)
c) Random approach
d) An Optimal approach

b

Explanation: We use a Heuristic approach, as it will find out brute force computation, looking at hundreds of thousands of positions. e.g Chess competition between Human and AI based Computer.


Uninformed Search Strategy:


Which search strategy is also called as blind search?
a) Uninformed search
b) Informed search
c) Simple reflex search
d) All of the mentioned

a

Explanation: In blind search, We can search the states without having any additional information. So uninformed search method is blind search.