Question: Which of the following is true about a binary search tree (BST)?
Options:
Correct Answer: Inorder traversal gives sorted order
Solution:
In a binary search tree, an inorder traversal visits nodes in non-decreasing order, thus giving a sorted order.