Question: In a graph, if there are multiple paths to a node, how does Dijkstra\'s algorithm determine which path to take?
Options:
Correct Answer: It chooses the path with the least weight
Solution:
Dijkstra\'s algorithm always chooses the path with the least cumulative weight to ensure the shortest path is found.