Engineering Questions with Answers - Multiple Choice Questions
Home » MCQs » Aeronautical Engineering » K-ary Tree Multiple Choice MCQ – 2
K-ary Tree Multiple Choice MCQ – 2
Can leaf node be called child node in a K-ary tree?
a) True
b) false
View Answer
Answer: a
Explanation: Leaf node is a node that has no child. Since Leaf node will always be the node on the last level of k-ary tree, so it can be called child node of given parent node in K-ary tree.
Can child node be always called Leaf node in the K-ary tree?
a) True
b) False
View Answer
Answer: b
Explanation: Leaf node is any node that does not contain any children. Child node may or may not contain more nodes. Child node will only be called leaf Node if the node has no child node.
What is the upper bound for maximum leaves in K-ary tree with height h?
a) K*h
b) K^h
c) K+h
d) K-h
View Answer
Answer: b
Explanation: In the K-ary tree having height h, the upper bound for having maximum number of leaves is k^h.
What is the height of a K-ary tree having only root node?
a) 1
b) 0
c) 2
d) 3
View Answer
Answer: b
Explanation: Height of a K-ary tree does not include the root node. So the height of the K-ary tree is without root node is 0.
Which one of the following is the correct formulae to find the parent node at index I?
a) (I-1)/K
b) (I+1)/K
c) (I*1)/K
d) (I-2)/K
View Answer
Answer: a
Explanation: The parent node for the node of index I in a K-ary tree is given by (I-1)/K.
How many extra nodes are there in Full K-ary tree than complete K-ary tree?
a) 1
b) 2
c) 3
d) Both have same number of nodes
View Answer
Answer: d
Explanation: Every Full K-ary tree is also a complete K-ary tree. Therefore, both have same number of nodes.