Question: In a weighted graph, if all edge weights are equal, which algorithm can be used to find the shortest path?
Options:
Correct Answer: Breadth-First Search
Solution:
If all edge weights are equal, Dijkstra\'s algorithm is still applicable, but Breadth-First Search (BFS) can also be used to find the shortest path.