Which of the following ways is a pre-order traversal?
Options
- Root->left sub tree-> right sub tree
- Root->right sub tree-> left sub tree
- right sub tree-> left sub tree->Root
- left sub tree-> right sub tree->Root
CORRECT ANSWER : Root->left sub tree-> right sub tree
Write your comments