Vidyalelo
Data Structure · Q141

Binary Search Trees(B Tree)

Programming · Data Structure · question 141

Q141

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

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

Answer: Option B

Solution

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