...
Artificial-Intelligence
December 23, 2023
Artificial-Intelligence
December 23, 2023
Artificial-Intelligence
December 23, 2023
Artificial-Intelligence
December 23, 2023

Artificial-Intelligence

Question 9
Match List I with List II

Choose the correct answer from the options given below
A
A-II, B-IV, C-I, D-III
B
A-II, B-III, C-I, D-IV
C
A-III, B-II, C-IV, D-I
D
A-III, B-IV, C-II, D-I
Question 9 Explanation: 
Greedy best-first search algorithm always selects the path which appears best at that moment. It is the combination of depth-first search and breadth-first search algorithms.
Time Complexity: The worst case time complexity of Greedy best first search is O(bm).
Space Complexity: The worst case space complexity of Greedy best first search is O(bm). Where, m is the maximum depth of the search space.
Complete: Greedy best-first search is also incomplete, even if the given state space is finite.
Optimal: Greedy best first search algorithm is not optimal.
Note:Refer the corresponding algorithms from standard sources.
Correct Answer: A
Question 9 Explanation: 
Greedy best-first search algorithm always selects the path which appears best at that moment. It is the combination of depth-first search and breadth-first search algorithms.
Time Complexity: The worst case time complexity of Greedy best first search is O(bm).
Space Complexity: The worst case space complexity of Greedy best first search is O(bm). Where, m is the maximum depth of the search space.
Complete: Greedy best-first search is also incomplete, even if the given state space is finite.
Optimal: Greedy best first search algorithm is not optimal.
Note:Refer the corresponding algorithms from standard sources.

Leave a Reply

Your email address will not be published. Required fields are marked *