Question:

The inorder traversal of a BST gives elements in _______.

Show Hint

Inorder traversal of a BST always gives elements in sorted (ascending) order.
Updated On: Jun 16, 2025
  • Level order
  • Ascending order
  • Descending order
  • Random order
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is B

Solution and Explanation

In a Binary Search Tree (BST), the inorder traversal visits the left subtree, then the root, and then the right subtree. This ensures that the elements are processed in ascending order.
Was this answer helpful?
0
0