Question: Which traversal method would you use to create a mirror image of a binary tree?
Options:
Correct Answer: Pre-order
Solution:
Pre-order traversal is used to create a mirror image of a binary tree by swapping the left and right children of each node.