Linear & Binary Searches

Linear & Binary Searches

9th Grade

8 Qs

quiz-placeholder

Similar activities

CSF U2 Algorithms p1

CSF U2 Algorithms p1

9th - 12th Grade

10 Qs

42. Algorithm - Binary Search Quiz

42. Algorithm - Binary Search Quiz

9th - 12th Grade

11 Qs

ASK BAB 3 : TING 3

ASK BAB 3 : TING 3

8th - 9th Grade

7 Qs

algorithms

algorithms

9th Grade

8 Qs

computer science quiz

computer science quiz

KG - Professional Development

10 Qs

T3 ASK Bab3

T3 ASK Bab3

9th Grade

5 Qs

Binary conversion

Binary conversion

7th - 12th Grade

10 Qs

Data Representation - Character Sets

Data Representation - Character Sets

2nd - 12th Grade

10 Qs

Linear & Binary Searches

Linear & Binary Searches

Assessment

Quiz

Computers

9th Grade

Hard

Used 25+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

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

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

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

3.

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

4.

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

5.

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

6.

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

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

'The worst case scenario is you have to check all the values' is a disadvantage for a 
Linear Search
Binary 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