Multiple choice

Best-First-Search strategy is a combination of

  1. BFS & Binary Search

  2. DFS & Binary Search

  3. BFS & DFS

  4. AND & OR Graphs

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Best-First Search combines the benefits of BFS (exploring nodes) and DFS (going deep into promising paths) by using a heuristic to prioritize which node to expand next.