Question: In a binary tree, if the in-order and post-order traversals are given, how can you reconstruct the tree?
Options:
Correct Answer: Using both in-order and post-order
Solution:
To reconstruct a binary tree, both in-order and post-order traversals are needed.