Python Packing & Unpacking Review

Python Packing & Unpacking Review

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

Kiểm tra kiến thức

Kiểm tra kiến thức

11th Grade

10 Qs

Raspberry Pi

Raspberry Pi

1st - 12th Grade

10 Qs

CMYK and RGB

CMYK and RGB

9th - 12th Grade

10 Qs

Computer Science New Year Review

Computer Science New Year Review

9th - 12th Grade

10 Qs

[TN]TIN10_BAI18_GÓI CÂU HỎI 1

[TN]TIN10_BAI18_GÓI CÂU HỎI 1

10th Grade

10 Qs

Set Dictionary List Tuple Python

Set Dictionary List Tuple Python

11th - 12th Grade

7 Qs

Python Lists Dictionaries Tuple Set

Python Lists Dictionaries Tuple Set

11th - 12th Grade

7 Qs

String Methods

String Methods

9th - 12th Grade

10 Qs

Python Packing & Unpacking Review

Python Packing & Unpacking Review

Assessment

Quiz

Computers

9th - 12th Grade

Easy

Created by

Cedra Wilson

Used 104+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following assignment statements is equivalent to the following code snippet?

coffee, tea, smoothie = ["kona", "mango", "raspberry"]

coffee = "kona"

tea = "mango"

smoothie = "raspberry"

coffee = "raspberry"

tea = "mango"

smoothie = "kona"

coffee = "kona"

tea = "kona"

smoothie = "kona"

coffee = ["kona", "mango", "raspberry"]

tea = ["kona", "mango", "raspberry"]

smoothie = ["kona", "mango", "raspberry"]

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following assignment statements is equivalent to the following code snippet?

red, blue, green = "BLUE", "GREEN", "RED"

red = "RED"

blue = "BLUE"

green = "GREEN"

red = "BLUE"

blue = "GREEN"

green = "RED"

red = ["BLUE", "GREEN", "RED"]

blue = ["BLUE", "GREEN", "RED"]

green = ["BLUE", "GREEN", "RED"]

red = "BLUE"

blue = "BLUE"

green = "BLUE"

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output when this program is executed?

first = 10

second = 20

first, second = second, first

print(first, second)

20 10

10 20

Error

first, second

second, first

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output when this program is executed?

x = 1

y = 2

z = 3

my_list = [x, y, z]

print(my_list)

[1, 2, 3]

[x, y, x]

1

2

3

x

y

z

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output when this program is executed?

x, y, z = 1, 2, 3

print("x: " + str(x))

print("y: " + str(y))

print("z: " + str(z))

x: 1

y: 2

z: 3

1: x

2: y

3: x

1

2

3

x

y

z

ValueError

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output when this program is executed?

my_list = [10, 20, 30]

x, y, z = my_list

print("x: " + str(x))

print("y: " + str(y))

print("z: " + str(z))

x: 10

y: 20

z: 30

10: x

20: y

30: x

10

20

30

x

y

z

ValueError

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output when this program is executed?

my_tuple = (1.0, 2.0, 3.0)

x, y, z = my_tuple

print("x: " + str(x))

print("y: " + str(y))

print("z: " + str(z))

x: 1.0

y: 2.0

z: 3.0

1.0: x

2.0: y

3.0: x

1.0

2.0

3.0

x

y

z

ValueError