DAY 29 Binary Search Trees & AVL Tree- 18th July 2024

DAY 29 Binary Search Trees & AVL Tree- 18th July 2024

University

20 Qs

quiz-placeholder

Similar activities

Volume 1-2 Reloaded (TT1L Tue)

Volume 1-2 Reloaded (TT1L Tue)

University - Professional Development

20 Qs

DS Lab-viva-1

DS Lab-viva-1

University

15 Qs

Programming Knowledge Quiz (Easy)

Programming Knowledge Quiz (Easy)

5th Grade - Professional Development

20 Qs

CONE OF EXPERIENCE

CONE OF EXPERIENCE

University

20 Qs

vCTC Christmas in July

vCTC Christmas in July

KG - Professional Development

16 Qs

Accident Investigation

Accident Investigation

University - Professional Development

20 Qs

TECHNICAL_QUIZ_ROUND1

TECHNICAL_QUIZ_ROUND1

University

25 Qs

IHT Cardiovascular RSM

IHT Cardiovascular RSM

University

20 Qs

DAY 29 Binary Search Trees & AVL Tree- 18th July 2024

DAY 29 Binary Search Trees & AVL Tree- 18th July 2024

Assessment

Quiz

Professional Development

University

Hard

Created by

KVCH CORPORATE

Used 3+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following properties does a Binary Search Tree (BST) satisfy?

Each node has at most two children.

The left subtree of a node contains only nodes with keys less than the node's key.

The right subtree of a node contains only nodes with keys greater than the node's key.

All of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity of searching for an element in a balanced Binary Search Tree?

O(1)

O(log n)

O(n)

O(n log n)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the in order traversal of the BST shown below? 4 2 1 3 6 5 7

4 2 1 3 6 5 7

1 2 3 4 5 6 7

7 6 5 4 3 2 1

4 2 3 1 6 5 7

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operation does not necessarily preserve the BST property?

Insertion

Deletion

Searching

None of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the height of a BST with 7 nodes in its most balanced form?

2

3

4

5

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following algorithms is used for searching in a BST?

Breadth-First Search

Depth-First Search

Binary Search

Linear Search

7.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following cases can occur when deleting a node from a BST?

The node is a leaf.

The node has one child.

The node has two children.

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