Question: In a weighted graph, if all edge weights are equal, which algorithm can be used instead of Dijkstra\'s?
Options:
Correct Answer: Breadth-First Search
Solution:
If all edge weights are equal, Breadth-First Search can be used to find the shortest path, as it explores all neighbors at the present depth prior to moving on.