Vidyalelo
Data Structure · Q260

Binary Search Trees(B Tree)

Programming · Data Structure · question 260

Q260

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

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

Answer: Option A

Solution

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