Multiple Choice
A binary tree is a collection of nodes in which
A) each node has at most one predecessor and at most one successor
B) each node has at most one predecessor and exactly two successors
C) each node has at most one predecessor and at most two successors
D) each node has at least one predecessor and at most two successors
Correct Answer:

Verified
Correct Answer:
Verified
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
Q24: A binary tree with just one node
Q25: A binary tree stores items that have
Q27: Binary trees have been used<br>A) in compilers
Q28: Let X be a node in a
Q29: Consider the operation of deleting the root
Q30: A complete binary tree with N nodes
Q31: The predecessor of a node in a