Binary Search Trees Quiz(2)

Binary Search Trees Quiz(2)

12th Grade

6 Qs

quiz-placeholder

Similar activities

Blockchain

Blockchain

5th Grade - Professional Development

10 Qs

binary tree

binary tree

12th Grade

11 Qs

Threaded Binary Trees Quiz

Threaded Binary Trees Quiz

12th Grade

10 Qs

Trees

Trees

12th Grade

10 Qs

Technical Terms - Internet (A-Z) - DOM

Technical Terms - Internet (A-Z) - DOM

12th Grade

10 Qs

Priority Queues and Heaps

Priority Queues and Heaps

9th - 12th Grade

10 Qs

Linked List

Linked List

12th Grade

10 Qs

Search Algorithms

Search Algorithms

9th - 12th Grade

10 Qs

Binary Search Trees Quiz(2)

Binary Search Trees Quiz(2)

Assessment

Quiz

Computers

12th Grade

Easy

Created by

Нурлыбай Узакбаев

Used 2+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following properties is true for a Binary Search Tree (BST)?

The left subtree contains only nodes with values greater than the node's value.

The right subtree contains only nodes with values less than the node's value.

Both left and right subtrees contain nodes with values less than the node's value.

The left subtree contains only nodes with values less than the node's value.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When inserting a new value into a Binary Search Tree, which of the following steps is correct?

Always insert the new value as the left child of the root.

Compare the new value with the current node's value and move left if it is smaller, or right if it is larger.

Insert the new value at the root regardless of its value.

Always insert the new value as the right child of the root.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

O(n)

O(log n)

O(n log n)

O(1)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a Binary Search Tree, if you insert the values 10, 5, 15, 3, and 7 in that order, what will be the in-order traversal of the tree?

3, 5, 7, 10, 15

10, 5, 15, 3, 7

15, 10, 7, 5, 3

10, 15, 5, 3, 7

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements about the deletion of a node in a Binary Search Tree is true?

Deleting a node with no children is the most complex operation.

Deleting a node with one child requires no adjustments to the tree.

Deleting a node with two children requires finding a replacement node.

Deleting a node does not affect the structure of the tree.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the primary purpose of using a Binary Search Tree?

To store data in a linear format.

To allow for efficient searching, insertion, and deletion of data.

To create a static data structure.

To ensure that all nodes have the same value.