Multiple choice

Which of the following forms of traversing is the one in which the left subtree of a tree is traversed first, then the root node and finally the right subtree are traversed?

  1. Preorder

  2. Inorder

  3. Postorder

  4. Breadth first traversal

  5. Sorting

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

This form of traversing is the one in which the left subtree of a tree is traversed first, then the root node and finally the right subtree are traversed.