CAT I - Quiz 2

CAT I - Quiz 2

University

5 Qs

quiz-placeholder

Similar activities

Sorting Methods

Sorting Methods

9th Grade - University

10 Qs

GCSE Computer Science 9-1: Sorting Algorithms

GCSE Computer Science 9-1: Sorting Algorithms

10th Grade - University

10 Qs

Day1 Quiz

Day1 Quiz

University

10 Qs

Data Struct: Quiz 3

Data Struct: Quiz 3

University

10 Qs

Searching and Sorting

Searching and Sorting

University

10 Qs

PDS - 04225 - Sorting Algorithms - Chapter 11 - Part 2

PDS - 04225 - Sorting Algorithms - Chapter 11 - Part 2

University

10 Qs

Métodos de Ordenamiento

Métodos de Ordenamiento

University

9 Qs

MATLAB 2

MATLAB 2

KG - University

10 Qs

CAT I - Quiz 2

CAT I - Quiz 2

Assessment

Quiz

Computers

University

Hard

Created by

Sharmila Sankar

Used 3+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

The maximum number of comparisond needed to sort 9 items (where each item is a 5 digit octal number) using radix sort is:

45

75

360

420

2.

MULTIPLE CHOICE QUESTION

45 sec • 3 pts

​ ​ ​ ​ ​ Sort the following list using Radix Sort: 329, 839, 436, 720, 355

What is the output of the algorithm after the second pass?​

720, 329,436, 839, 355

329, 720, 355, 436, 839

329, 355, 436, 720, 839

720, 355, 436, 329, 839

3.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

How many comparisons will be made to sort the array arr = {1, 5, 3, 8, 2} using radix sort?

5

7

9

0

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is the most suitable definition of radix sort?

It is a non comparison based integer sort

It is a comparison based integer sort

It is a non comparison based non integer sort

It is a comparison based non integer sort

5.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

What will be the order of elements of the array arr = {23, 67, 143, 654, 43} after first iteration of Most Significant Digit Radix sort (MSD Radix Sort) is complete?

23, 43, 67, 143, 654

23, 67, 43, 143, 654

23, 67, 143, 654, 43

23, 143, 43, 654, 67