Question: Which of the following is a characteristic of a binary search tree?
Options:
Correct Answer: Left child < Parent < Right child
Solution:
In a binary search tree, for any given node, the left child is less than the parent and the right child is greater.