Question: What is the primary advantage of using Heap Sort over Quick Sort?
Options:
Correct Answer: Better worst-case performance
Solution:
Heap Sort has better worst-case performance of O(n log n) compared to Quick Sort\'s O(n^2) in the worst case.