41.
In a Binary Search Tree (BST), how can you find the depth of a particular node?

42.
What is the typical use case for a Binary Search Tree (BST) in computing?

43.
What is the result of an inorder traversal of a Binary Search Tree (BST)?

44.
How do you handle duplicate values in a Binary Search Tree (BST) if duplicates are allowed?

45.
In a Binary Search Tree (BST), what does the term "node height" refer to?

47.
Consider a situation of writing a binary tree into a file with memory storage efficiency in mind, is array representation of tree is good?

48.
Which of the following is an application of Red-black trees and why?

50.
Select the code snippet which performs in-order traversal.

public void inorder(Tree root)
{
	System.out.println(root.data);
	inorder(root.left);
	inorder(root.right);
}

public void inorder(Tree root)
{
	inorder(root.left);
	System.out.println(root.data);
	inorder(root.right);
}

public void inorder(Tree root)
{
	System.out.println(root.data);
	inorder(root.right);
	inorder(root.left);
}

public void inorder(Tree root)
{
	inorder(root.right);
	inorder(root.left);
	System.out.println(root.data);
}

Read More Section(Binary Search Trees(B Tree))

Each Section contains maximum 100 MCQs question on Binary Search Trees(B Tree). To get more questions visit other sections.