Multiple choice

A complete binary tree with the property that the value at each node is at least as large as the values at its children, is known as

  1. Binary search tree

  2. AVL tree

  3. Completely balanced tree

  4. Heap

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

A heap is a specialized tree-based data structure that satisfies the heap property: in a max-heap, every node is greater than or equal to its children.