Multiple Choice
A complete binary tree with N nodes may be stored in an array A of length N by storing the root at A[0],and then storing in successive array locations the nodes of the tree in increasing order of the level of nodes.If nodes in the same level are stored in left to right order,then the parent of the node stored at A[k] will be stored at
A) A[(k-1) /2]
B) A[k-1]
C) A[2k+1]
D) A[k/2]
Correct Answer:

Verified
Correct Answer:
Verified
Q11: A binary tree traversal method that recursively
Q12: A binary tree with no root<br>A) must
Q13: Postorder traversal of a binary tree<br>A) first
Q14: Let X be a node in a
Q15: The level of a node X in
Q17: An empty binary tree has height<br>A) -1<br>B)
Q18: To find the minimum element stored in
Q19: A complete binary tree with N nodes
Q20: The successor of a node in a
Q21: When a new item is added to