Question: What is the worst-case time complexity for deleting the minimum element from a binary heap?
Options:
Correct Answer: O(log n)
Solution:
Deleting the minimum element from a binary heap takes O(log n) time as it requires re-heapifying the structure.