AI MCQ #196: Which search is implemented with an empty first-in-first-out queue?

Q196. Which search is implemented with an empty first-in-first-out queue?

  • a) Depth-first search
  • b) Breadth-first search
  • c) Bidirectional search
  • d) None of the mentioned

✅ Correct Answer: B) Breadth-first search

Explanation: Because of FIFO queue, it will assure that the nodes that are visited first will be expanded first.