Vidyalelo
Data Structure · Q240

Binary Search Trees(B Tree)

Programming · Data Structure · question 240

Q240

For the tree below, write the post-order traversal.

For the tree below, write the post-order traversal.
Binary Search Trees(B Tree) mcq question image
A.
6, 2, 7, 2, 5, 11, 9, 5, 4
B.
6, 5, 11, 2, 7, 5, 9, 4, 2
C.
6, 5, 2, 11, 7, 4, 9, 5, 2
Answer
D.
6, 2, 7, 2, 11, 5, 5, 9, 4

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board