Question: What is the main difference between Dijkstra\'s algorithm and the Bellman-Ford algorithm?
Options:
Correct Answer: Bellman-Ford can handle negative weights, Dijkstra\'s cannot
Solution:
The main difference is that the Bellman-Ford algorithm can handle graphs with negative weight edges, while Dijkstra\'s algorithm cannot.