Multiple Choice
Given the BinarySearchTree and Node classes (partially shown below) , select an expression to complete the recursive method smallest in the Node class.The method returns the smallest data value in the binary search tree rooted at a node.
A) right.smallest()
B) left.smallest()
C) Math.min(left.smallest() , right.smallest() )
D) data.smallest()
Correct Answer:

Verified
Correct Answer:
Verified
Q20: Which of the following is a correct
Q21: Which of the following statements about inserting
Q22: Consider the following tree diagrams: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB7392/.jpg"
Q23: Consider the following tree diagram: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB7392/.jpg"
Q24: Which of the following is NOT a
Q26: In a binary search tree, where the
Q27: Assuming that the variable t is instantiated
Q28: Consider the following binary search tree: <img
Q29: Which of the following statements about the
Q30: What is the efficiency of adding an