Question: What is the worst-case time complexity for deleting the minimum element from a min-heap?
Options:
Correct Answer: O(log n)
Solution:
Deleting the minimum element from a min-heap involves removing the root and then re-heapifying, which takes O(log n) time.