Trees and BST

Trees and BST

University

9 Qs

quiz-placeholder

Similar activities

Lego Dive

Lego Dive

3rd Grade - University

14 Qs

Предпринимательство

Предпринимательство

University

10 Qs

Модуль 4

Модуль 4

University

10 Qs

B2B: Intro to C

B2B: Intro to C

University

10 Qs

Рабство в Стародавньому Римі. Повстання Спартака

Рабство в Стародавньому Римі. Повстання Спартака

6th Grade - University

12 Qs

Улюблена ТМВ

Улюблена ТМВ

University

13 Qs

Quiz da Educação

Quiz da Educação

University

10 Qs

3 март - открит урок

3 март - открит урок

3rd Grade - University

8 Qs

Trees and BST

Trees and BST

Assessment

Quiz

Computers, Education

University

Easy

Created by

Konstantin Dimitrov

Used 141+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Кой от тези методи за обхождане на дърво се използва за извеждане на съдържанието на двоично дърво във възходящ ред?

Pre-Order

In-Order

Post-Order

Bitcoin

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

A tree is composed of ____ connected by edges or lines.

Leafs

Root Node

Fruit

Nodes

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image

Това валидно двоично дърво за търсене ли е?

ДА

НЕ

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

A Kind of tree where every node in a tree can have at most two children.

Tree

Binary Search Tree(BST)

Binary Tree

Graph

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image

Какъв е броят на листата в дървото

1

4

5

6

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image

In this tree, where would the new value "7" be placed?

On the right "leaf" of "6"

On the left "leaf" of "15"

On the left "leaf" of "4"

On the left "root" and Over the top of the current number "5"

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

In a Binary Tree with N nodes, minimum possible height or the minimum number of levels is?

2^N

Log2(N+1)

N+1

N^2

8.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Кое обхождане е подходящо, ако искаме да отпечатаме елементите по нива

In-order

Pre-order

DFS

BFS

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Ако обходим следното дърво в ширина (BFS). То правилен ли ще бъде следния изход: 0 2 1 5 4 3 9 7

ДА

НЕ