Question: In Dijkstra\'s algorithm, what data structure is primarily used to keep track of the minimum distance from the source vertex?
Options:
Correct Answer: Priority Queue
Solution:
A priority queue is used in Dijkstra\'s algorithm to efficiently retrieve the vertex with the smallest distance from the source.