Menu

Binary Trees Questions

MCQ
61.
The in-order traversal of a binary tree is HFIEJGZ, and the post-order traversal of the same tree is HIFJZGE. What will be the total number of nodes in the left sub tree of the given tree? (It is NOT a search tree)
forum Discussion
MCQ
62.
If the in-order and pre-order traversal of a binary tree are D,B,F,E,G,H,A,C and A,B,D,E,F,G,H,C respectively then the post-order traversal of that tree is
forum Discussion
MCQ
63.
In a binary tree, the number of terminal or leaf nodes is 10. The number of nodes with two children is
forum Discussion
MCQ
64.
The pre-order traversal of a binary-search tree is DBACFE. What is the post-order traversal?
forum Discussion
MCQ
65.
How many distinct binary search trees can be formed which contains the integers 1, 2, 3?
forum Discussion
MCQ
66.
The number of nodes that have no successors in a complete binary tree of depth 4 is
forum Discussion
MCQ
67.
One can make an exact replica of a Binary Search Tree by traversing it in ...............
forum Discussion
MCQ
68.
A complete Binary Tree with 15 nodes contains ................. edges.
forum Discussion
MCQ
69.
A complete binary tree with the property that the value of each node is at least as large as the values of its children is known as ..............
forum Discussion
MCQ
70.
A binary tree stored using linked representation can be converted to its mirror image by traversing it in ...............
forum Discussion