Data Structure Tree Question #5637
MCQ Single Best Answer Easy

QWhat is a postorder traversal of a binary tree?

ID: #5637 Tree 156 views
Question Info
#5637Q ID
EasyDifficulty
TreeTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A Visiting the root node, then the left subtree, then the right subtree
  • B Visiting the left subtree, then the root node, then the right subtree
  • C Visiting the left subtree, then the right subtree, then the root node
  • D Visiting the right subtree, then the root node, then the left subtree
Correct Answer: Option C

Explanation

Answer: c) Visiting the left subtree, then the right subtree, then the root node

Share This Question

Challenge a friend or share with your study group.