Question: In a binary tree, what is the in-order traversal of the tree with nodes A, B, C, D arranged as follows: A is the root, B is the left child of A, and C is the right child of A, with D as the left child of C?
Options:
Correct Answer: B, A, C, D
Solution:
The in-order traversal visits the left subtree, then the root, and then the right subtree, resulting in B, A, C, D.