Search Algorithms

Search Algorithms

9th Grade

9 Qs

quiz-placeholder

Similar activities

Decimal and Binary Practice

Decimal and Binary Practice

9th - 12th Grade

10 Qs

Common Algorithms Quiz

Common Algorithms Quiz

KG - Professional Development

11 Qs

Common Algorithms -  Bitesize

Common Algorithms - Bitesize

KG - 11th Grade

10 Qs

F3 Pembangunan Algoritma

F3 Pembangunan Algoritma

9th Grade

8 Qs

PBD Algoritma ASK T3 Sesi 2

PBD Algoritma ASK T3 Sesi 2

9th Grade

10 Qs

CSPUnit6AssessmentReview

CSPUnit6AssessmentReview

9th - 12th Grade

12 Qs

Data Representation - Converting Denary to Binary

Data Representation - Converting Denary to Binary

3rd - 12th Grade

10 Qs

Artificial Intelegence - Informatika

Artificial Intelegence - Informatika

7th - 9th Grade

10 Qs

Search Algorithms

Search Algorithms

Assessment

Quiz

Computers

9th Grade

Hard

Created by

J Giblin

Used 139+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Linear Search is faster than Binary search
TRUE
FALSE
It depends on the scenario

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Where can Linear Search be performed?
On letters
On numbers
Both
None of these

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which values can Binary Search be performed on?
Letters
Numbers
Ordered Numbers
Ordered Letters

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

On average, which searching algorithm is more efficient?
Binary Search
Linear Search

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many linear searches will it take to find the value 7 in the list [1,4,8,7,10,28]?
2
3
4
5

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Bubble sort takes the first two values of a list, and swaps them if wrong?
True
False

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many binary searches will it take to find the value 7 in the list [1,4,7,8,10,28]?
0
1
2
3

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many binary searches will it take to find the value 10 in the list [1,4,9,10,11]?
0
1
2
3

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the best description of the linear search algorithm?
Put the elements in order, then go through them one by one until target is found or the end of the list is reached.
Put the elements in order, compare with the middle value, if not the target: continue to the left or right of the middle and repeat. 
Elements do not need to be in order. Go through them one by one until target is found or the end of the list is reached.
Elements do not need to be in order, compare with the middle value, if not the target: continue to the left or right of the middle and repeat.