Question: What is the primary difference between Dijkstra\'s algorithm and the A* search algorithm?
Options:
Correct Answer: A* uses heuristics, Dijkstra\'s does not
Solution:
The primary difference is that A* uses heuristics to guide its search, while Dijkstra\'s algorithm does not use any heuristics and explores all paths equally.