set-3
134. ______ is similar to Hill climbing searching but with revising or backtracking.
Depth first search
Breadth first search
Best first search
Binary Search
135. The best first search uses the concept of a ______ and heuristic search.
Circular queue
Linear queue
Priority queue
Stack
136. ______ is the time and ______ is the space complexity of Best first search. Where b= branching factor and d= depth.
,
,
,
,
137. Greedy best first search evaluates nodes by using only ______
Linear function
Non-linear function
Friend function
Heuristic function
138. Why greedy best first search is not complete?
Because it can override the heuristic function
Because it can traverse to outer loop
Because it can get stuck in loop
None of the above
139. ______ is the time and ______ is the space complexity of Greedy Best first search.
,
,
,
,
140. The main idea of A* searching is to a ______
Do not expand expensive path
Expand expensive path
All path cost are same in searching
None of above
141. Evaluation function is ______ for A* searching, where, g(n) - cost so far to reach n h(n) - estimated cost to goal from n f(n) - estimated total cost of path through n to goal.
142. A* search uses an ______ heuristic; that is, h(n) < h*(n) where h*(n) is the true cost from ‘n’.
Non- admissible
Admissible
Anchoring
Constant
143. When should A* searching terminate?
After we enqueue a goal
After we dequeue a goal
No enqueue and dequeue
None of above
144. A* search theorem states that:
If h(n) is not admissible, A* using TREE-SEARCH is optimal.
If h(n) is admissible, A* using TREE-SEARCH is optimal.
If h(n) is admissible, A* using TREE-SEARCH is not optimal.
If h(n) is not admissible, A* using TREE-SEARCH is also not optimal.
145. ______ is the time and ______ is the space complexity of A* Search. Where b= branching factor and d= depth
,
,
,
,
146. A* is an admissible algorithm that ______ optimal solution.
Does not guarantee
Guarantee
Partially guarantee
None of above
147. The main application of A* Search Algorithm is: Path/ Routing problems can be solved by using A* Searching algorithm.
True
False
Partially True
None of above
148. A* using Tree search is optimal if heuristic is ______.
Constant
Admissible
Anchoring
Representative
149. A* using Graph search is optimal if heuristic is ______.
Constant
Admissible
Representative
Anchoring
150. ______ is sometimes called greedy local search because it grabs a good neighbor state without thinking ahead about where to go next.
Mini Max
Alpha beta pruning
Hill Climbing
BFS
Last updated