Time Left - 15:00 mins

Binary tree Traversals I Starter Quiz

Attempt now to get your rank among 60 students!

Question 1

Number of BSTs possible with 6 keys are?

Question 2

Suppose we want to search for an element 70 in a Binary Search tree. Which of the following probe sequences are not valid while searching a Binary Search tree?

Question 3

Consider an empty binary search tree. The elements 22, 25, 13, 4, 16, 30, 10, 14 are inserted in an empty binary search tree in the given sequence. Let h be the height obtained.
The element at the 4th level(level-1 is top level) is ?

Question 4

A binary tree T has 20 leaves. The number of nodes in T having two children is __________.

Question 5

Observe the BST given below and answer the questions that follow.

Two leaf nodes are marked as X and Y, the values of which are missing. Let the number of values node marked X can take is "a", and the number of values node marked Y can take is "b". The values placed in leaf nodes marked as X and Y should be such that all the nodes in the BST have distinct values. Assume that all the values are integers.

Find the value of 10b+a __________.

Question 6

Consider an empty Binary Search Tree in which the elements are inserted in the order :

20, 30, 15, 10, 7, 80, 45, 25, 17 and 6 Find the element which is inserted at the last level of BST _______.

Question 7

In delete operation of binary search tree, we need inorder successor (or predecessor) of a node when a node to be deleted where it has both left and right child. Which of the following is true about inorder successor needed in delete operation?
  • 60 attempts
  • 1 upvote
  • 1 comment
Jul 13GATE & PSU CS