CPSC1050 Sorting Algorithm

CPSC1050 Sorting Algorithm

University

6 Qs

quiz-placeholder

Similar activities

Informatik II Quiz 1

Informatik II Quiz 1

University

11 Qs

BCSC0006 - Quiz 2 - Big-Oh Notation

BCSC0006 - Quiz 2 - Big-Oh Notation

University

10 Qs

C Program Array and strings

C Program Array and strings

University

10 Qs

Common Algorithms Quiz

Common Algorithms Quiz

KG - Professional Development

11 Qs

Python Numpy

Python Numpy

University

11 Qs

Hari ke 3 kuis coding dan perkenalan AI

Hari ke 3 kuis coding dan perkenalan AI

University

10 Qs

searching dan sorting

searching dan sorting

12th Grade - University

10 Qs

Computer programming-Array

Computer programming-Array

University

10 Qs

CPSC1050 Sorting Algorithm

CPSC1050 Sorting Algorithm

Assessment

Quiz

Computers

University

Hard

Created by

W Mao

Used 5+ times

FREE Resource

6 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

3 mins • 5 pts

Which element of the array is sorted (in its final correct position) after the first pass of the insertion sort?

2.

MULTIPLE CHOICE QUESTION

3 mins • 5 pts

What would the following array look like after the first pass of the bubble sort algorithm (sort in ascending order)?

33, -5, 12, -4, 13, 5, 0, 11, 2, 28

-5, -4, 33, 12, 13, 5, 0, 2, 11, 28

-5, 12, -4, 13, 5, 0, 11, 2, 28, 33

-4, -5, 12, 13, 5, 0, 11, 2, 28, 33

-5, -4, 0, 2, 5, 11, 12, 13, 28, 33

3.

MULTIPLE CHOICE QUESTION

3 mins • 5 pts

What would the following array look like after the first pass of the insertion sort algorithm (sort in ascending order)?

33, -5, 12, -7, 17, 5, 0, 11, 2, 28

0, -5, 12, -7, 17, 5, 0, 33, 2, 28

-7, -5, 12, 33, 17, 5, 0, 11, 2, 28

-5, 33, 12, -7, 17, 5, 0, 11, 2, 28

4.

MULTIPLE CHOICE QUESTION

3 mins • 5 pts

What would the following array look like after the first swap of the quick sort algorithm if the first item is considered as the pivot (sort in ascending order)?

3, -5, 12, 5, -3, 0, 11, 2, 20

3, -5, 2, 5, -3, 0, 11, 12, 20

3, -5, 2, 0, -3, 5, 11, 12, 20

-3, -5, 2, 0, 3, 5, 11, 12, 20

5.

MULTIPLE CHOICE QUESTION

3 mins • 5 pts

How many comparisons are needed to search for 35 in the following sorted array using Binary Search?

2, 12, 25, 33, 36, 52, 55, 67, 85, 90, 95, 100

12

3

4

5

6.

MULTIPLE CHOICE QUESTION

3 mins • 5 pts

Suppose we are sorting an array of nine integers using quicksort, and we have just finished the first partitioning with the array looking like this:

2  5  1  0  6  9  12  11  10

The pivot could be either the 6 or the 9.

The pivot could be the 6, but it is not the 9.

The pivot is not the 6, but it could be the 9.

Neither the 6 nor the 9 could be the pivot.