Standard Sorting Algorithms Reading

Standard Sorting Algorithms Reading

Assessment

Passage

Computers

9th - 10th Grade

Hard

Created by

Andrew Ward

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following sorting algorithms is the simplest?

Bubble sort

Merge sort

Insertion sort

Quick sort

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a bubble sort, what is the term used for each run through the list from start to finish?

Pass

Cycle

Round

Loop

3.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

A merge sort uses a technique called ______ and conquer.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In an insertion sort, if a value is less than the value to its left, what happens?

It is moved left until it meets a smaller value

It is swapped with the value to its right

It stays in its position

It is moved to the end of the list

5.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

An insertion sort is more efficient than a ______ sort but less efficient than a merge sort.

6.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

During a merge sort, the list is repeatedly divided until all elements are ______ separated.