Q4
How can you determine if a Binary Tree is a Binary Search Tree (BST)?
A.
Verify if all nodes in the left subtree are less than the root and all nodes in the right subtree are greater than the root.
AnswerB.
Check if the tree is balanced.
C.
Ensure all nodes have exactly two children.
D.
Verify the height of the tree.
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board