Question: In Dijkstra\'s algorithm, what data structure is commonly used to keep track of the nodes to be explored?
Options:
Correct Answer: Priority Queue
Solution:
A priority queue is used in Dijkstra\'s algorithm to efficiently retrieve the next node with the smallest tentative distance.