What property does a Binary Search Tree (BST) ensure for its left and right subtrees?
A. The left subtree contains nodes with values less than the root, and the right subtree contains nodes with values greater than the root.
B. The left subtree contains nodes with values greater than the root, and the right subtree contains nodes with values less than the root.
C. Both subtrees have equal values.
D. The left subtree is always empty.
Answer: Option A

Join The Discussion