Binary Search Tree Quiz

Binary Search Tree Quiz

University

10 Qs

quiz-placeholder

Similar activities

Link layer and LANs

Link layer and LANs

University

10 Qs

Mastering Express JS Concepts

Mastering Express JS Concepts

12th Grade - University

15 Qs

Preguntas sobre DevOps y Docker

Preguntas sobre DevOps y Docker

University

14 Qs

Modul 7 - AVL Tree

Modul 7 - AVL Tree

University

10 Qs

Multiple-Choice Quiz: Algorithms Lab 2

Multiple-Choice Quiz: Algorithms Lab 2

University

10 Qs

AVL Trees and 2-3-4 Trees Quiz

AVL Trees and 2-3-4 Trees Quiz

University

10 Qs

General ExpressJS Quiz

General ExpressJS Quiz

University

10 Qs

Exploring Trees and Heaps

Exploring Trees and Heaps

University

15 Qs

Binary Search Tree Quiz

Binary Search Tree Quiz

Assessment

Quiz

Information Technology (IT)

University

Medium

Created by

Yasmin Kandil

Used 9+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a Binary Search Tree (BST)?

A tree where each node has at most two children.

A tree where the left child contains values smaller than the parent, and the right child contains values greater.

A tree that is always balanced.

None of the above.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the inorder traversal?

NRL

LRN

LNR

RNL

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What traversal method prints the BST elements in sorted order?

Preorder

Inorder

Postorder

Level Order

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A BST contains the elements [10, 20, 5, 15, 30]. What is the inorder traversal result?

10, 5, 15, 20, 30

5, 10, 15, 20, 30

30, 20, 15, 10, 5

5, 15, 10, 20, 30

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the Preorder traversal?

NRL

LRN

NLR

RNL

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What condition makes a tree not a BST?

A node's left child has a greater value than the node itself.

A node's right child has a smaller value than the node itself.

Both A and B.

None of the above.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following ensures the best performance of a BST?

Ensuring the tree remains balanced.

Adding elements in a sorted manner.

Adding elements in descending order.

Using a fixed insertion order.

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?