Test1 Flashcards
1
Q
Which search strategy is also called as blind search? Uninformed search Informed search Simple reflex search All of the mentioned
A
Uninformed search
2
Q
How many main types are available in uninformed search method as our lectures? 3 4 5 6
A
5
3
Q
Which search is implemented with an empty first-in-first-out queue? Depth-first search Breadth-first search Bidirectional search None of the mentioned
A
Breadth-first search
4
Q
When is breadth-first search is optimal? When there is less number of nodes When all step costs are equal When all step costs are unequal None of the mentioned
A
When all step costs are equal
5
Q
What is the space complexity of Depth-first search? O(b) O(bl) O(m) O(bm)
A
O(bm)
6
Q
How many parts does a problem consists of? 1 2 3 4
A
4
7
Q
Which algorithm is expected to solve any kind of problem? Breadth-first algorithm Tree algorithm Bidirectional search algorithm None of the mentioned
A
Tree algorithm
8
Q
Which search algorithm imposes a fixed depth limit on nodes? Depth-limited search Depth-first search Iterative deepening search Bidirectional search
A
Depth-limited search
9
Q
Which search implements stack operation for searching the states? Depth-limited search Depth-first search Breadth-first search None of the mentioned
A
Depth-first search
10
Q
Blind searching is general term for Informed Search Uninformed Search Informed & Unformed Search Heuristic Search
A
Uninformed Search
11
Q
Strategies that know whether one non-goal state is "more promising" than another are called Informed & Unformed Search Unformed Search Heuristic & Unformed Search Informed & Heuristic Search
A
Informed & Heuristic Search
12
Q
Which of the following is/are Uninformed Search technique/techniques Breadth First Search (BFS) Depth First Search (DFS) Bidirectional Search All of the mentioned
A
All of the mentioned
13
Q
Which data structure conveniently used to implement BFS? Stacks Queues Priority Queues All of the mentioned
A
Queues
14
Q
Which data structure conveniently used to implement DFS? Stacks Queues Priority Queues All of the mentioned
A
Stacks
15
Q
The time and space complexity of BFS is (For time and space complexity problems consider b as branching factor and d as depth of the search tree.) O(bd+1) and O(bd+1) O(b2) and O(d2) O(d2) and O(b2) O(d2) and O(d2)
A
O(bd+1) and O(bd+1)
16
Q
Breadth-first search is not optimal when all step costs are equal, because it always expands the shallowest unexpanded node. State whether true or false.
A
False
17
Q
uniform-cost search expands the node n with the\_\_\_\_\_\_\_\_\_\_ Lowest path cost Heuristic cost Highest path cost Average path cost
A
Lowest path cost
18
Q
Depth-first search always expands the \_\_\_\_\_\_ node in the current fringe of the search tree. Shallowest Child node Deepest Minimum cost
A
Deepest
19
Q
Breadth-first search always expands the \_\_\_\_\_\_ node in the current fringe of the search tree. Shallowest Child node Deepest Minimum cost
A
Shallowest
20
Q
Optimality of BFS is When there is less number of nodes When all step costs are equal When all step costs are unequal None of the mentioned
A
When all step costs are equal
21
Q
We often regard a LIFO as a \_\_\_\_\_\_ and an FIFO as \_\_\_\_\_\_\_\_ Stack, Queue Queue, Stack Priority Queue, Stack Stack. Priority Queue
A
Stack, Queue
22
Q
The main task of a problem-solving agent is
Solve the given problem and reach to goal
To find out which sequence of action will get it to the goal state
All of the mentioned
None of the mentioned
A
All of the mentioned