Python Packing & Unpacking Review

Quiz
•
Computers
•
9th - 12th Grade
•
Easy
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
Similar Resources on Wayground
11 questions
Desain Grafis

Quiz
•
12th Grade
10 questions
PCEP Section 1E: Perform Input/Output console operations

Quiz
•
12th Grade
10 questions
Data Types in Python

Quiz
•
9th - 12th Grade
11 questions
Learning Variables

Quiz
•
9th - 12th Grade
10 questions
AP CSA Unit 1 & 2 Review

Quiz
•
9th - 12th Grade
7 questions
Python-list,tuple,Dictionary

Quiz
•
11th - 12th Grade
10 questions
Kiểm tra kiến thức

Quiz
•
11th Grade
8 questions
String Handling in Java

Quiz
•
10th Grade
Popular Resources on Wayground
50 questions
Trivia 7/25

Quiz
•
12th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
11 questions
Negative Exponents

Quiz
•
7th - 8th Grade
12 questions
Exponent Expressions

Quiz
•
6th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
20 questions
One Step Equations All Operations

Quiz
•
6th - 7th Grade
18 questions
"A Quilt of a Country"

Quiz
•
9th Grade
Discover more resources for Computers
50 questions
Trivia 7/25

Quiz
•
12th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
18 questions
"A Quilt of a Country"

Quiz
•
9th Grade
6 questions
RL.10.1 Cite Evidence

Quiz
•
10th Grade
10 questions
Characteristics of Life

Quiz
•
9th - 10th Grade
14 questions
Algebra 1 SOL Review #1

Quiz
•
9th Grade