In a Binary Search Tree (BST), how can you find the depth of a particular node?
A. By counting the number of edges from the root to the node.
B. By counting the number of nodes in the subtree.
C. By finding the height of the tree.
D. By counting the number of children of the node.
Answer: Option A
Join The Discussion