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
9 questions
КБ занятие 6

Quiz
•
10th Grade
7 questions
Delphi Revision Part 2

Quiz
•
8th - 10th Grade
12 questions
5 задание ЕГЭ

Quiz
•
11th Grade
9 questions
Uvod u Python i jednostavne tipove podataka

Quiz
•
9th - 12th Grade
10 questions
แบบทดสอบเรื่องการรับค่าในภาษาไพทอน (รายบุคคล)

Quiz
•
9th - 12th Grade
11 questions
Python Arcade 10Com at 26/5/2021

Quiz
•
10th Grade
11 questions
Введение в программирование

Quiz
•
9th Grade
8 questions
PYTHON

Quiz
•
12th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
10 questions
1.2 OSI & TCP IP Models Quiz

Quiz
•
10th Grade
20 questions
Digital Citizenship

Quiz
•
8th - 12th Grade
30 questions
Introduction to Computers

Quiz
•
8th - 9th Grade
35 questions
Computer Baseline Examination 2025-26

Quiz
•
9th - 12th Grade
13 questions
Problem Solving Process

Quiz
•
9th - 12th Grade
20 questions
Hardware vs. Software Quiz

Quiz
•
7th - 10th Grade
10 questions
Understanding Algorithms with Pseudocode and Flowcharts

Interactive video
•
9th - 12th Grade