Search Header Logo

Unit 9 Test Review

Authored by Julia McGreal

Computers

9th - 12th Grade

Used 2+ times

Unit 9 Test Review
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following program print?

my_grid = [[2, 5, 7, 10], [-3, "hello", 9, "hi"], ["hello", "hi", "hello", "hi"], [True, False, True, False]] print(my_grid[0])

[5, 7, 10, -3, ‘hello’, 9, ‘hi’]

[2, 5]

[[2, 5, 7, 10], [-3, ‘hello’, 9, ‘hi’]]

[2, 5, 7, 10]

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following program print?

my_grid = [[2, 5, 7, 10], [-3, "hello", 9, "hi"], ["hello", "hi", "hello", "hi"], [True, False, True, False]] print(my_grid[:2])

[5, 7, 10, -3, ‘hello’, 9, ‘hi’]

[2, 5]

[[2, 5, 7, 10], [-3, ‘hello’, 9, ‘hi’]]

[2, 5, 7, 10]

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does this program print?

numbers = [x + x for x in range(4)] print(numbers)

[0, 1, 2, 3, 4]

[0, 1, 2, 3]

[2, 4, 6, 8]

[0, 2, 4, 6]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does this program print?

numbers = [x % 2 == 0 for x in range(0, 6)] print(numbers)

[True, False, True, False, True, False]

[0, 1, 0, 1, 0, 1, 0]

[0, 1, 0, 1, 0, 1]

[0, 1, 2, 3, 4, 5]

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct example of packing?

my_list = [1, 2, 3]

x, y, z = my_list

my_list = [1, 2, 3]

x = y = z = my_list

x = 1

y = 2

z = 3

my_list = [x, y, z]

x = 1

y = 2

z = 3

my_list = x = y = z

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct example of unpacking?

my_list = [1, 2, 3]

x, y, z = my_list

my_list = [1, 2, 3]

x = y = z = my_list

x = 1

y = 2

z = 3

my_list = [x, y, z]

x = 1

y = 2

z = 3

my_list = x = y = z

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Suppose you have the following dictionary, which stores the names and ages of people:

my_dictionary = {

"Bo": 32,

"Fiona": 28,

"Carlos": 45

}

Which line correctly prints Bo’s age?

print(my_dictionary[0])

print(my_dictionary[0][1])

print(my_dictionary["Bo"])

print(my_dictionary["Bo"][1])

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?