BST 2

BST 2

University

10 Qs

quiz-placeholder

Similar activities

Trees - Data Structures

Trees - Data Structures

University

7 Qs

DS-U3-Q1

DS-U3-Q1

University

10 Qs

Data structures

Data structures

University

9 Qs

Trees

Trees

University

10 Qs

DSAA Quiz

DSAA Quiz

University

15 Qs

M3-1

M3-1

University

15 Qs

DRAINER CS : Data Structures Final Review

DRAINER CS : Data Structures Final Review

University

10 Qs

Binary Tree Searching - Data Structures

Binary Tree Searching - Data Structures

University

15 Qs

BST 2

BST 2

Assessment

Quiz

Computers

University

Medium

Created by

SACHI GCET

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a potential issue with unbalanced Binary Search Trees?

Improved search efficiency

Consistent O(1) insertion time

Degraded search performance

Automatic balancing

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following traversal outputs the data in sorted order in a BST?

Preorder

Inorder

Postorder

Level order

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the worst case time complexity for search, insert and delete operations in a general Binary Search Tree for a skewed tree ?

O(n) for all

O(Logn) for all

O(Logn) for search and insert, and O(n) for delete

O(Logn) for search, and O(n) for insert and delete

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the Binary Search Tree insertion algorithm?

To add nodes randomly

  • To maintain ordering and balance

To create a linked list

  • To ensure constant time complexity

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

The preorder traversal sequence of a binary search tree is 30, 20, 10, 15, 25, 23, 39, 35, 42. Which one of the following is the postorder traversal sequence of the same tree?

10, 20, 15, 23, 25, 35, 42, 39, 30

15, 10, 25, 23, 20, 42, 35, 39, 30

15, 20, 10, 23, 25, 42, 35, 39, 30

15, 10, 23, 25, 20, 35, 42, 39, 30

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the context of BST insertion, what is a leaf node?

Node with no children

Node with only a left child

  • Node with only a right child

Node with two children

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following traversals is sufficient to construct BST from given traversals 1) Inorder 2) Preorder 3) Postorder


Any one of the given three traversals is sufficient


Either 2 or 3 is sufficient

2 and 3

2 and 3

1 and 3

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?