Search Algorithms

Search Algorithms

9th Grade

9 Qs

quiz-placeholder

Similar activities

HEALTH AND SAFETY 9

HEALTH AND SAFETY 9

7th - 9th Grade

11 Qs

Basic Parts of Speech EPS

Basic Parts of Speech EPS

9th - 10th Grade

10 Qs

PUNCTUATION SPACING RULES

PUNCTUATION SPACING RULES

9th - 12th Grade

10 Qs

IT- Revision

IT- Revision

9th Grade

10 Qs

Python 3 Basics

Python 3 Basics

9th Grade

13 Qs

Quiz Lec2

Quiz Lec2

KG - University

10 Qs

Database Concept

Database Concept

9th - 12th Grade

10 Qs

Threats to Data

Threats to Data

9th - 12th Grade

11 Qs

Search Algorithms

Search Algorithms

Assessment

Quiz

Computers

9th Grade

Practice Problem

Hard

Created by

J Giblin

Used 140+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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.