Binary Search Tree Quiz

Binary Search Tree Quiz

12th Grade

10 Qs

quiz-placeholder

Similar activities

Algorithm Complexity Quiz

Algorithm Complexity Quiz

9th - 12th Grade

10 Qs

AS Computing: Data Structures

AS Computing: Data Structures

10th Grade - University

15 Qs

Informatika XII

Informatika XII

12th Grade

15 Qs

A Level Computing 1.4.2 Data structures: Trees #1

A Level Computing 1.4.2 Data structures: Trees #1

12th Grade

14 Qs

A-Level Computer Science Data Structures Quiz

A-Level Computer Science Data Structures Quiz

12th Grade - University

14 Qs

Tree

Tree

12th Grade

10 Qs

Binary Search Tree Quiz No 2

Binary Search Tree Quiz No 2

12th Grade

10 Qs

Exploring Binary Trees Quiz

Exploring Binary Trees Quiz

12th Grade

12 Qs

Binary Search Tree Quiz

Binary Search Tree Quiz

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Sreerama Murthy Velaga

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a Binary Search Tree (BST), what is the value of a node called with respect to its left subtree?

Predecessor

Successor

Ancestor

Descendant

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a property of a Binary Search Tree (BST)?

In-order traversal gives nodes in sorted order

Each node has at most two children

Left subtree of a node contains nodes with values less than the node's value

Right subtree of a node contains nodes with values greater than the node's value

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which traversal of a Binary Search Tree (BST) will give nodes in non-decreasing order?

Pre-order

Post-order

In-order

Level-order

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a disadvantage of Binary Search Trees (BSTs)?

Search operation is fast

Insertion and deletion can be slow in the worst case

Requires less memory compared to other tree structures

Suitable for all types of data

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a Binary Search Tree (BST), what is the maximum number of nodes at level "h"?

2^h

2^(h-1)

h

h^2

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity of searching for a value in a balanced Binary Search Tree (BST)?

O(n)

O(log n)

O(n log n)

O(1)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a Binary Search Tree (BST), which operation is used to remove a node with two children?

Delete

Erase

Remove

None of the above

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?