Question: Which traversal method is best for creating a mirror image of a binary tree?
Options:
Correct Answer: Pre-order
Solution:
Post-order traversal is best for creating a mirror image of a binary tree, as it processes children before the parent.