Binary Search Tree

Binary Search Tree

University

7 Qs

quiz-placeholder

Similar activities

Trees

Trees

University

10 Qs

CCS3101-CS1E

CCS3101-CS1E

University

11 Qs

Tree

Tree

University

10 Qs

0xDebug - Python

0xDebug - Python

University

10 Qs

informatika

informatika

7th Grade - University

10 Qs

DBMS - Hash Indexing

DBMS - Hash Indexing

University

10 Qs

Graphs Introduction

Graphs Introduction

University

10 Qs

BCSC0006 Trees

BCSC0006 Trees

University

10 Qs

Binary Search Tree

Binary Search Tree

Assessment

Quiz

Computers

University

Hard

Created by

Nicolas Jara

Used 61+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Would this Binary Tree be considered a Binary Search Tree?

Yes 

No

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

Is this a binary search tree and what is the runtime for traversal?

Yes, O(log(n))

No, O(n)

Yes, O(n)

No, O(log(n))

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When adding a node with the same value as its root where would it go?

Left

Right

Depends on the implementation

doesn't matter

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

If I deleted the root from the Binary Search Tree what could I replace it with?

7

14

3

1

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

What does this code do?

Find all the values less than root.item

Find the max value

Find the min value

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What does this code do?

Count all the items greater than k.

Count all the items less than k

Count all the items equal to k

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of these Trees is a Binary Search Tree?

Media Image
Media Image
Media Image