What is a dictionary in Python?

Python Dictionaries

Quiz
•
Computers
•
University
•
Hard
Ilyas Ustun
Used 4+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
A collection of ordered items
A mapping from keys to values
A sequence of characters
A type of loop
Answer explanation
A dictionary in Python is a data structure that stores data as key-value pairs, making it a mapping from keys to values. This allows for efficient data retrieval and organization, distinguishing it from ordered collections or sequences.
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following is a correct way to create an empty dictionary?
numbers = ()
numbers = []
numbers = ''
numbers = {}
Answer explanation
The correct way to create an empty dictionary in Python is using curly braces: numbers = {}. The other options create different data types: () is a tuple, [] is a list, and '' is a string.
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of len({'zero': 0, 'one': 1, 'two': 2})?
1
0
2
3
Answer explanation
The function len() returns the number of key-value pairs in a dictionary. The given dictionary {'zero': 0, 'one': 1, 'two': 2} has three pairs: 'zero', 'one', and 'two'. Therefore, the output is 3.
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which operator is used to check if a key exists in a dictionary?
!=
not in
==
in
Answer explanation
The 'in' operator is used to check if a key exists in a dictionary. It returns True if the key is found, making it the correct choice for this question.
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the result of numbers.get('three', 0) if 'three' is not a key in the dictionary?
KeyError
None
3
0
Answer explanation
The method numbers.get('three', 0) returns the second argument (0) when 'three' is not a key in the dictionary. Therefore, the result is 0.
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does the method values() do in a dictionary?
Returns a list of keys
Returns a list of values
Deletes a key-value pair
Adds a new key-value pair
Answer explanation
The method values() in a dictionary returns a list of all the values stored in the dictionary. Therefore, the correct answer is 'Returns a list of values', as it specifically retrieves the values associated with the keys.
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the result of the expression:
'one' in {'zero': 0, 'one': 1, 'two': 2}
None
True
KeyError
False
Answer explanation
The expression checks if 'one' is a key in the given dictionary. Since 'one' is indeed a key in {'zero': 0, 'one': 1, 'two': 2}, the result is True.
Create a free account and access millions of resources
Similar Resources on Quizizz
10 questions
Python Quiz Techno India

Quiz
•
University
14 questions
ytu-yz-yaz NLP EN

Quiz
•
University
20 questions
Python

Quiz
•
University
10 questions
CB3491 CRYPTOGRAPHY AND CYBER SECURITY

Quiz
•
University
10 questions
Python Generators

Quiz
•
10th Grade - University
10 questions
Python Dictionaries

Quiz
•
University
13 questions
Python Module 1

Quiz
•
University - Professi...
10 questions
Python Basics: Dictionaries and Strings

Quiz
•
University - Professi...
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade