Question: What traversal method would you use to get the nodes of a binary tree in sorted order?
Options:
Correct Answer: In-order
Solution:
In-order traversal of a binary search tree (BST) visits nodes in sorted order, making it the correct choice for this requirement.