Search Header Logo

Buuble sort and 2d list Quiz

Authored by Kelzang Lethro

Instructional Technology

8th Grade

Used 3+ times

Buuble sort and 2d list Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to swap the values of two variables, a and b, in Python?

a = b and b = a

a, b = b, a

swap(a, b)

a = b + a and b = a - b

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given a 2D list matrix = [[1, 2, 3], [4, 5, 6]], how would you access the number 5?

matrix[5]

matrix[2][1]

matrix[1][1]

matrix[0][1]

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a bubble sort algorithm, what happens during one pass through the list?

The smallest element is moved to its final position.

The list is completely sorted.

Adjacent elements are compared and swapped if they are in the wrong order.

The list is divided into two halves.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

After the first pass of a bubble sort on the list [3, 7, 2, 1], what will the list look like? (Sorting in ascending order)

[3, 2, 1, 7]

[1, 3, 7, 2]

[2, 1, 3, 7]

[3, 7, 2, 1]

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you find the number of rows in a 2D list named grid?

len(grid[0])

grid.rows()

len(grid)

grid.length

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the code: x = 10, y = 20, temp = x, x = y, y = temp. What are the final values of x and y?

x = 10, y = 20

x = 10, y = 10

x = 20, y = 20

x = 20, y = 10

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following describes the worst-case scenario for bubble sort?

The list is already sorted.

The list is sorted in reverse order.

The list contains duplicate elements.

The list has an odd number of elements.

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?