Which of the following traversal techniques lists the nodes of a binary search…

2026

Which of the following traversal techniques lists the nodes of a binary search tree in ascending order?

  1. A.

    Post-order

  2. B.

    Pre-order

  3. C.

    In-order

  4. D.

    None of the above

Attempted by 341 students.

Show answer & explanation

Correct answer: C

In a Binary Search Tree (BST), an in-order traversal visits nodes by processing the left subtree, then the root node, and finally the right subtree. Because of the BST property (left < root < right), this sequence results in nodes being listed in ascending order.

Explore the full course: Up Lt Grade Assistant Teacher 2025