dictionary

dictionary

University

8 Qs

quiz-placeholder

Similar activities

Strings y listas en Python

Strings y listas en Python

University

10 Qs

MLBB Pagoh Quiz

MLBB Pagoh Quiz

1st Grade - University

10 Qs

หน่วยที่ 6 การสร้างฟอร์ม

หน่วยที่ 6 การสร้างฟอร์ม

University

10 Qs

programming

programming

University

10 Qs

Programming Practice Quiz 3

Programming Practice Quiz 3

University

9 Qs

TKINTER QUIZ

TKINTER QUIZ

University

5 Qs

Evaluasi Pembelajaran Grafik Excel

Evaluasi Pembelajaran Grafik Excel

12th Grade - University

4 Qs

science quiz

science quiz

4th Grade - University

5 Qs

dictionary

dictionary

Assessment

Quiz

Computers

University

Medium

Created by

Valerie Chan

Used 1+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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)