Question: In a binary search tree (BST), how does binary search differ from searching in a sorted array?
Options:
Correct Answer: It uses tree properties
Solution:
In a binary search tree, the search leverages the tree structure, allowing for efficient searching based on the properties of BSTs.