Question: Which of the following operations can be performed in O(log n) time in a binary heap?
Options:
Correct Answer: All of the above
Solution:
All of the listed operations (insertion, deletion of the maximum element, and heapify) can be performed in O(log n) time in a binary heap.