Data Structure MCQ - Tree

This section focuses on the "Tree" of the Data Structure. These Multiple Choice Questions (mcq) should be practiced to improve the Data Structure skills required for various interviews (campus interview, walk-in interview, company interview), placement, entrance exam and other competitive examinations.

1. The no of external nodes in a full binary tree with n internal nodes is?

A. n
B. n+1
C. 2n
D. 2n + 1

View Answer


2. Which of the following is a true about Binary Trees?

A. Every binary tree is either complete or full.
B. Every complete binary tree is also a full binary tree.
C. Every full binary tree is also a complete binary tree.
D. No binary tree is both complete and full.
E. None of the above

View Answer


3. A Binary Tree can have

A. Can have 2 children
B. Can have 1 children
C. Can have 0 children
D. All of the above

View Answer


4.Which of the following is not an advantage of trees?

A. Hierarchical structure
B. Faster search
C. Router algorithms
D. Undo/Redo operations in a notepad

View Answer


5.The difference between the external path length and the internal path length of a binary tree with n internal nodes is?

A. 1
B. n
C. n + 1
D. 2n

View Answer


6. In a complete k-ary tree, every internal node has exactly k children or no child. The number of leaves in such a tree with n internal nodes is:

A. nk
B. (n – 1) k+ 1
C. n( k – 1) + 1
D. n(k – 1)

View Answer


7.Height of Height of a binary tree is

A. MAX( Height of left Subtree, Height of right subtree)+1
B. MAX( Height of left Subtree, Height of right subtree)
C. MAX( Height of left Subtree, Height of right subtree)-1
D. None of the above

View Answer


8. Which of the following options is an application of splay trees ?

A. cache Implementation
B. networks
C. send values
D. receive values

View Answer


9. Suppose a complete binary tree has height h>0. The minimum no of leaf nodes possible in term of h is?

A. 2h -1
B. 2h -1 + 1
C. 2h -1
D. 2h +1

View Answer


10. A weight-balanced tree is a binary tree in which for each node. The number of nodes in the left sub tree is at least half and at most twice the number of nodes in the right sub tree. The maximum possible height (number of nodes on the path from the root to the farthest leaf) of such a tree on n nodes is best described by which of the following?

A. log2 n
B. log4/3 n
C. log3 n
D. log3/2 n

View Answer






Also Check :


Discussion



* You must be logged in to add comment.