Vidyalelo
Data Structure · Q95

Binary Search Trees(B Tree)

Programming · Data Structure · question 95

Q95

What are the children for node 'w' of a complete-binary tree in an array representation?

A.
2w and 2w+1
Answer
B.
2+w and 2-w
C.
w+1/2 and w/2
D.
w-1/2 and w+1/2

Answer: Option A

Solution

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