Vidyalelo
Data Structure · Q210

Binary Search Trees(B Tree)

Programming · Data Structure · question 210

Q210

What is the parent for a node 'w' of a complete binary tree in an array representation when w is not 0?

A.
floor(w-1/2)
Answer
B.
ceil(w-1/2)
C.
w-1/2
D.
w/2

Answer: Option A

Solution

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