Multiple Choice
To find the minimum node in a binary search tree
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
Q32: A complete binary tree with N nodes
Q33: To add a new element X to
Q34: A binary tree with height 1 must
Q35: A node in a binary tree that
Q36: A binary tree traversal method that visits
Q38: A ternary tree is like a binary
Q39: Let X be a node in a
Q40: Traversing a binary search tree in inorder<br>A)
Q41: Assuming a Node class<br>class Node<br>{<br>int element;<br>Node left,right;<br>Node(int
Q42: In a binary tree,<br>A) there must be