Question: In a binary tree, what is the in-order traversal of the tree with nodes A, B, C?
Options:
Correct Answer: B, A, C
Solution:
In in-order traversal, the left subtree is visited first, then the root, and finally the right subtree. For a tree with nodes A (root), B (left), and C (right), the traversal is B, A, C.