-
A.
Complete binary tree
-
B.
Heap property
-
C.
Parent nodes are greater than child nodes
-
D.
All leaf nodes are at the same level
Correct Option: CExplanation:
Answer: c) Parent nodes are greater than child nodes
Explanation: A binary heap can either satisfy the min-heap property or the max-heap property. For a min-heap, the parent nodes are smaller than or equal to the child nodes, while for a max-heap, the parent nodes are greater than or equal to the child nodes.