Question: In a graph, if you want to find the shortest path in an unweighted graph, which traversal method would you use?
Options:
Correct Answer: BFS
Solution:
BFS is used to find the shortest path in an unweighted graph because it explores all nodes at the present depth before moving on.