Question: Which traversal method is used to get the nodes of a binary tree in non-decreasing order?
Options:
Correct Answer: In-order
Solution:
In-order traversal visits the left subtree, the root, and then the right subtree, which results in nodes being accessed in non-decreasing order for binary search trees.