Test1 Flashcards
Which search strategy is also called as blind search? Uninformed search Informed search Simple reflex search All of the mentioned
Uninformed search
How many main types are available in uninformed search method as our lectures? 3 4 5 6
5
Which search is implemented with an empty first-in-first-out queue? Depth-first search Breadth-first search Bidirectional search None of the mentioned
Breadth-first search
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
When all step costs are equal
What is the space complexity of Depth-first search? O(b) O(bl) O(m) O(bm)
O(bm)
How many parts does a problem consists of? 1 2 3 4
4
Which algorithm is expected to solve any kind of problem? Breadth-first algorithm Tree algorithm Bidirectional search algorithm None of the mentioned
Tree algorithm
Which search algorithm imposes a fixed depth limit on nodes? Depth-limited search Depth-first search Iterative deepening search Bidirectional search
Depth-limited search
Which search implements stack operation for searching the states? Depth-limited search Depth-first search Breadth-first search None of the mentioned
Depth-first search
Blind searching is general term for Informed Search Uninformed Search Informed & Unformed Search Heuristic Search
Uninformed Search
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
Informed & Heuristic Search
Which of the following is/are Uninformed Search technique/techniques Breadth First Search (BFS) Depth First Search (DFS) Bidirectional Search All of the mentioned
All of the mentioned
Which data structure conveniently used to implement BFS? Stacks Queues Priority Queues All of the mentioned
Queues
Which data structure conveniently used to implement DFS? Stacks Queues Priority Queues All of the mentioned
Stacks
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)
O(bd+1) and O(bd+1)
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.
False
uniform-cost search expands the node n with the\_\_\_\_\_\_\_\_\_\_ Lowest path cost Heuristic cost Highest path cost Average path cost
Lowest path cost
Depth-first search always expands the \_\_\_\_\_\_ node in the current fringe of the search tree. Shallowest Child node Deepest Minimum cost
Deepest
Breadth-first search always expands the \_\_\_\_\_\_ node in the current fringe of the search tree. Shallowest Child node Deepest Minimum cost
Shallowest
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
When all step costs are equal
We often regard a LIFO as a \_\_\_\_\_\_ and an FIFO as \_\_\_\_\_\_\_\_ Stack, Queue Queue, Stack Priority Queue, Stack Stack. Priority Queue
Stack, Queue
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
All of the mentioned
What is state space? The whole problem Your Definition to a problem Problem you design Representing your problem with variable and parameter
Representing your problem with variable and parameter
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. (True or False)
True