Answer TRUE or FALSE.

When you print out the nodes of binary tree, the leaf nodes appear in the same relative order for the preorder, inorder, and postorder traversals.

True
  • True
  • False

Take a small binary tree with three or four leaf nodes and see what happens with the traversals.

Since all 3 traversals print the left subtree before the right subtree, the leaves have to get printed in the same order.