Question: In a binary tree, if the in-order traversal yields the sequence [D, B, E, A, F, C], what is the pre-order traversal?
Options:
Correct Answer: [A, B, D, E, C, F]
Solution:
The pre-order traversal can be derived from the in-order traversal and the structure of the tree, yielding [A, B, D, E, C, F].