Multiple Choice
A binary tree stores items that have a natural order in such a way that at each node X,all items stored in the left subtree of X are less than the item stored at X,and all items stored in the right subtree are greater than the item stored at X.Such a binary tree is called
A) an ordered binary tree
B) a binary search tree
C) an AVL tree
D) a priority queue
Correct Answer:

Verified
Correct Answer:
Verified
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
Q24: A binary tree with just one node
Q26: A binary tree is a collection of
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