Question: What traversal method would you use to delete a binary tree?
Options:
Correct Answer: Post-order
Solution:
Post-order traversal is used to delete a binary tree because it ensures that a node is deleted only after its children have been deleted.