Question: In a binary search tree, how does binary search help in finding an element?
Options:
Correct Answer: By comparing with the root and deciding left or right
Solution:
In a binary search tree, binary search helps by comparing the target with the root and deciding whether to go left or right based on the value.