0 of 20 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 20 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
1. Which of the following statement about binary tree is correct?
2. Suppose we have numbers between 1 and 1000 in a binary search tree and want to search for the number 363. Which of the following sequence could not be the sequence of the node examined?
3. In full binary search tree every internal node has exactly two children. If there are 100 leaf nodes in the tree, how many internal nodes are there in the tree?
4. Which type of traversal of binary search tree outputs the value in sorted order?
5. If a node having two children is to be deleted from binary search tree, it is replaced by its
6. A binary search tree is formed from the sequence 6, 9, 1, 2, 7, 14, 12, 3, 8, 18. The minimum number of nodes required to be added in to this tree to form an extended binary tree is?
7. When a binary tree is converted in to an extended binary tree, all the nodes of a binary tree in the external node becomes
8. A threaded binary tree is a binary tree in which every node that does not have right child has a thread to its
9. A binary search tree is generated by inserting in order the following integers:
50, 15, 62, 5, 20, 58, 91, 3, 8, 37, 60, 24
The number of the node in the left sub-tree and right sub-tree of the root, respectively, is
10. A Binary Tree can have
11. Height of a binary tree is
12. True statements about AVL tree are
13. Match the following for binary tree traversal
(1) Pre Order |
(2) In Order |
Post Order |
14. Given a binary search tree, which traversal type would print the values in the nodes in sorted order?
15. Which of the following statements about binary trees is NOT true?
16. A binary tree in which if all its levels except possibly the last, have the maximum number of nodes and all the nodes at the last level appear as far left as possible, is called
17. A complete binary tree with the property that the value at each node is at least as large as the values at its children is called
18. A 3-ary tree in which every internal node has exactly 3 children. The number of leaf nodes in such a tree with 6 internal nodes will be
19. A complete binary tree of level 5 has how many nodes ?
20. Traversing a binary tree first root and then left and right subtrees called _______traversal.