algorithms

algorithms

9th Grade

8 Qs

quiz-placeholder

Similar activities

Estructuras Repetitivas

Estructuras Repetitivas

7th Grade - Professional Development

10 Qs

Fracciones

Fracciones

1st - 12th Grade

10 Qs

PYTHON 21

PYTHON 21

9th Grade

12 Qs

Number system

Number system

8th - 10th Grade

11 Qs

Binary

Binary

8th - 11th Grade

8 Qs

Przeliczanie liczb binarnych na dziesiętne

Przeliczanie liczb binarnych na dziesiętne

KG - University

10 Qs

Iteration - While Loop

Iteration - While Loop

8th - 12th Grade

12 Qs

Списки Python

Списки Python

9th Grade

10 Qs

algorithms

algorithms

Assessment

Quiz

Computers

9th Grade

Hard

Created by

zeke hogan

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

what is bubble sort?

simple sorting algorithm that builds the final sorted array (or list) one item at a time

a simple sorting algorithm that repeatedly steps through the list to be sorted, compares each pair of adjacent items and swaps them if they are in the wrong order

sorting technique based on divide and conquer technique

is a search algorithm that finds the position of a target value within a sorted array.

none of the above.

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

what is binary?

is a search algorithm that finds the position of a target value within a sorted array

sorting techniques based on divide and conquer technique

a simple sorting algorithm that repeatedly steps through the list to be sorted, compares each pair of adjacent items and swaps them if they are in the wrong order

a simple sorting algorithm that builds the final sorted array (or list) one item at a time

none of the above

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

bubble sort - 13, 16, 10, 11, 4, 12, 6, 7

13,16,10,11,4,12,6,7

13,16,10,11,4,12,6,7

13,10,16,11,4,12,6,7

10,13,16,11,4,12,6,7

10,13,11,16,4,12,6,7

10,11,13,6,4,12,6,7

10,11,13,4,16,12,6,7

10,11,4,13,16,12,6,7

10,4,11,13,16,12,6,8

13,16,10,11,4,12,6,7

13,16,10,11,4,12,6,7

13,10,16,11,4,12,6,7

10,13,16,11,4,12,6,7

10,13,11,16,4,12,6,7

10,11,13,16,4,12,6,7

10,11,13,4,16,12,6,7

10,11,4,13,16,12,6,7

10,4,11,13,16,12,6,7

13,16,10,11,4,12,6,7

13,16,10,11,4,12,6,7

13,10,7,11,4,12,6,7

10,13,16,11,4,12,6,7

10,13,11,16,4,12,6,7

10,11,13,16,4,12,6,7

10,11,13,4,16,12,6,7

10,11,4,13,16,12,6,7

10,4,11,13,6,12,6,7

13,16,10,11,4,12,6,7

13,16,10,11,4,12,6,7

13,10,16,11,4,12,6,7

10,13,16,11,4,12,6,7

1,13,11,16,4,12,6,7

10,11,13,16,4,12,6,7

10,11,13,4,16,12,6,7

10,11,4,13,16,12,6,7

10,4,11,13,16,12,6,6

none of the above

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

how many comparisons - 6, 2, 3, 5, 4

4

6

2

7

none of the above

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image
A Linear search algorithm requires data to be ordered.
True
False

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image
What is an advantage of the Linear search algorithm?
Performs well with small sized data sets
Can be used on data sets with more than a million elements
Is complicated to code

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If the data is in order the best search to use would be a
Binary Search
Linear Search

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

'The algorithm is longer and more complex to write' is a disadvantage for a 
Binary Search
Linear Search