5_Arrays — Bubble Sort

5_Arrays — Bubble Sort

10th - 11th Grade

5 Qs

quiz-placeholder

Similar activities

String Handling in Java

String Handling in Java

10th Grade

8 Qs

Programming basics

Programming basics

9th - 12th Grade

10 Qs

APCSA Unit 6.2

APCSA Unit 6.2

10th - 12th Grade

6 Qs

APCSA Unit 8

APCSA Unit 8

10th - 12th Grade

6 Qs

Vlookup

Vlookup

10th Grade

10 Qs

Pseudocode - Arrays

Pseudocode - Arrays

8th - 11th Grade

10 Qs

Grade 11 - Quiz 1 Introduction to Arrays

Grade 11 - Quiz 1 Introduction to Arrays

11th Grade

10 Qs

Single Array

Single Array

11th Grade

10 Qs

5_Arrays — Bubble Sort

5_Arrays — Bubble Sort

Assessment

Quiz

Computers

10th - 11th Grade

Hard

Created by

Pratima SEEWOONAUTH

Used 24+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following statements is true about Bubble sort?

It works in a random order, swapping elements haphazardly.

It works by repeatedly swapping the adjacent elements if they are in the wrong order.

It compares adjacent elements to check whether they are in the wrong order.

It involves a repetitive iteration.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Bubble sort involves the use of a ________ "for" loop.

random

sequential

nested

serial

3.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following statements is true about Bubble sorting an array?

It requires several passes to reorder elements of an array.

It is the only method used for sorting arrays.

It involves comparison and swapping of elements.

Elements must be swapped regardless of order.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following piece of code (assume that the code is indented properly):

num = arr.array('i', [12, 3, 2, 6, 1])

for i in range(len(num)):

for j in range(0, len(num)-i-1):

if num[j] > num[j+1] :

num[j], num[j+1] = num[j+1], num[j]

12, 3, 2, 6, 1

12, 6, 3, 2, 1

1, 2, 3, 6, 12

returns an error

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

The given array is num = arr.array('i', [1, 2, 4, 3]). Bubble sort is used to sort the array elements. How many iterations will be done to sort the array with improvised version?