Multiple Choice
To find the minimum element stored in a heap
A) you should start at the root,and then keep passing from each node to its left child until you come to a node with no left child
B) you should start at the root,and then keep passing from each node to its right child until you come to a node with no right child
C) you should look at the root of the binary tree
D) you need to examine every node,and then pick the one with the least value
Correct Answer:

Verified
Correct Answer:
Verified
Q13: Postorder traversal of a binary tree<br>A) first
Q14: Let X be a node in a
Q15: The level of a node X in
Q16: A complete binary tree with N nodes
Q17: An empty binary tree has height<br>A) -1<br>B)
Q19: A complete binary tree with N nodes
Q20: The successor of a node in a
Q21: When a new item is added to
Q22: An AVL tree is<br>A) a binary search
Q23: Assuming a Node class<br>class Node<br>{<br>int element;<br>Node left,right;<br>Node(int