Binary Search Tree Quiz

Binary Search Tree Quiz

University

10 Qs

quiz-placeholder

Similar activities

Multiple-Choice Quiz: Algorithms Lab 2

Multiple-Choice Quiz: Algorithms Lab 2

University

10 Qs

Bab 4 Jaringan Komputer dan Internet

Bab 4 Jaringan Komputer dan Internet

11th Grade - University

10 Qs

AVL Trees and 2-3-4 Trees Quiz

AVL Trees and 2-3-4 Trees Quiz

University

10 Qs

DSA (QUIZ 3) - Recursion

DSA (QUIZ 3) - Recursion

University

15 Qs

General ExpressJS Quiz

General ExpressJS Quiz

University

10 Qs

eXtensible Markup Language

eXtensible Markup Language

12th Grade - University

12 Qs

BSc Lab Component

BSc Lab Component

University

15 Qs

Klasifikasi-DT

Klasifikasi-DT

University

10 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?