Q. Which of the following way follows in Post order traversal? (Solved)
1. Root -> Left sub tree -> Right sub tree.
2. Root -> Right sub tree -> Left sub tree.
3. Left sub tree -> Root -> Right sub tree.
4. Left sub tree -> Right sub tree -> Root.
- d. Left sub tree -> Right sub tree -> Root.