Question: Which traversal method is guaranteed to find the shortest path in an unweighted graph?
Options:
Correct Answer: Breadth-First Search
Solution:
BFS is guaranteed to find the shortest path in an unweighted graph because it explores all neighbors at the present depth prior to moving on to nodes at the next depth level.