Question: Which traversal method of a binary tree is commonly used in expression evaluation?
Options:
Correct Answer: Pre-order traversal
Solution:
Pre-order traversal is used in expression trees to evaluate expressions, as it processes the operator before its operands.