C++ Quiz 5: Searching and Sorting Algorithms

C++ Quiz 5: Searching and Sorting Algorithms

7th - 12th Grade

9 Qs

quiz-placeholder

Similar activities

Linear Binary Search

Linear Binary Search

10th - 12th Grade

9 Qs

SDD HSC Quiz 4Review Q1-10

SDD HSC Quiz 4Review Q1-10

12th Grade

10 Qs

Unit 6/7 B  Quiz #2  Objects in lists and arrays, searching , so

Unit 6/7 B Quiz #2 Objects in lists and arrays, searching , so

9th - 12th Grade

12 Qs

Python

Python

12th Grade

6 Qs

APCSA Unit 7

APCSA Unit 7

9th - 12th Grade

12 Qs

GCSE Computer Science Paper 2: Topic 1

GCSE Computer Science Paper 2: Topic 1

10th Grade

11 Qs

G10 CS Linear Search

G10 CS Linear Search

12th Grade

10 Qs

Linear Search

Linear Search

12th Grade

10 Qs

C++ Quiz 5: Searching and Sorting Algorithms

C++ Quiz 5: Searching and Sorting Algorithms

Assessment

Quiz

Computers

7th - 12th Grade

Medium

Created by

Jerry Xiao

Used 147+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Linear search algorithm:

Scans each index until finding a matching value

Repeatedly dividing in half the array until found

Bubble sorting technique

None of them

2.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Linear Search works when the array is?

Sorted

Unsorted

Both

None of the above

3.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

A binary search algorithm can be best described as what?

A instant lookup method

Repeatedly dividing in half the array until found

Start at the head, move through the list until found

None of the above

4.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

When is Binary Search preferred over Linear Search?

Small Database

Sorted Database

Unsorted Database

None of the above

5.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Using binary search in this sorted array:

3 7 10 45 84 100 153 170

How many comparisons would it take to find number 170?

0 – 1

1 – 2

3 – 4

4 – 5

6.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

The maximum comparisons needed in Binary Search on array of size 16 is:

16

8

4

5

7.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

The maximum comparisons needed in Linear Search on array of size 32 is:

32

33

16

31

8.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Insertion sort is a sorting algorithm in which the elements are transferred one at a time to the right position

True

False

9.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What is the first change that insertion sort would make to this sequence?

“6 2 5 9”

6 9 5 2

5 9 6 2

9 5 2 6

2 6 5 9