dictionary

dictionary

University

8 Qs

quiz-placeholder

Similar activities

UERD BJ11 Advanced Interaction 1 (Advanced Interaction 1 dan 2)

UERD BJ11 Advanced Interaction 1 (Advanced Interaction 1 dan 2)

University

10 Qs

Safety

Safety

KG - University

10 Qs

COS783 L6 2025

COS783 L6 2025

University

6 Qs

Sample Type

Sample Type

University

8 Qs

Python(Basics) - 1/2

Python(Basics) - 1/2

University

6 Qs

Class Recap By: Marco

Class Recap By: Marco

KG - Professional Development

8 Qs

Python_Basic_Lesson5

Python_Basic_Lesson5

University

8 Qs

What is the most beautiful city in yout country ?

What is the most beautiful city in yout country ?

KG - University

9 Qs

dictionary

dictionary

Assessment

Quiz

Computers

University

Medium

Created by

Valerie Chan

Used 1+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

combo_meals = {1: ["hamburger", "fries"],

2: ["hamburger", "fries", "soda"],

4: ["veggie burger", "salad", "soda"],

6: ["hot dog", "apple slices", "orange juice"]}

print(combo_meals[2])

"soda"

["veggie burger", "salad", "soda"]

keyerror

["hamburger", "fries", "soda"]

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

combo_meals = {1: ["hamburger", "fries"], 2: ["hamburger", "fries", "soda"], 4: ["veggie burger", "salad", "soda"], 6: ["hot dog", "apple slices", "orange juice"]}

print(combo_meals[3])

"Hamburger"

"Keyerror"

["hot dog", "apple slices", "orange juice"]

["veggie burger", "salad", "soda"],

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

inventory = {"iron spear": 12, "invisible knife": 30, "needle of ambition": 10, "stone glove": 20, "the peacemaker": 65, "demonslayer": 50}

print("the peacemaker" in inventory)

False

Keyerror

True

65

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

inventory = {"iron spear": 12, "invisible knife": 30, "needle of ambition": 10, "stone glove": 20, "the peacemaker": 65, "demonslayer": 50}

print(12 in inventory)

Key error

"Iron Spear"

True

False

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which of the following lines of code would remove "Breakdancing" from the list olympic_sports.

olympic_sports = ["Hockey", "Swimming", "Fencing", "Volleyball", "Breakdancing"]

olympics_sports.pop(3)

olympics_sports.pop()

olympics_sports.pop(-2)

olympics_sports.pop["Breakdancing"

6.

OPEN ENDED QUESTION

3 mins • 5 pts

what is the code to slice the list ["b", "c"] from mylist:

mylist = ["a", "b", "c", "d", "e"]

Evaluate responses using AI:

OFF

7.

OPEN ENDED QUESTION

1 min • 5 pts

Which of the following would be generated by the code snippet?

mylist = ["a", "b", "c", "d", "e", "f"]

print(mylist[2:5])

Evaluate responses using AI:

OFF

8.

MULTIPLE CHOICE QUESTION

3 mins • 5 pts

Which of the following commands will return the length of the list mylist?

mylist.length()

mylist.len()

len(mylist)

mylist.len(0)

Similar Resources on Wayground