Question: Which traversal method of a binary tree is commonly used to generate a sorted list of values?
Options:
Correct Answer: In-order traversal
Solution:
In-order traversal of a binary tree visits nodes in ascending order, making it suitable for generating a sorted list.