Python Dictionaries Quiz

Python Dictionaries Quiz

10th Grade

15 Qs

quiz-placeholder

Similar activities

Unit 5: Lists and Dictionaries

Unit 5: Lists and Dictionaries

9th - 12th Grade

10 Qs

IBA Chapter 8B

IBA Chapter 8B

8th - 12th Grade

16 Qs

The keyboard and mouse

The keyboard and mouse

4th Grade - Professional Development

11 Qs

12CSC Database Normalisation

12CSC Database Normalisation

9th - 12th Grade

17 Qs

PowerPoint Quiz

PowerPoint Quiz

7th Grade - University

12 Qs

MEMO QUIZ

MEMO QUIZ

9th - 12th Grade

14 Qs

Kiểu dữ liệu Dictionary

Kiểu dữ liệu Dictionary

10th Grade

20 Qs

PythonTest

PythonTest

6th Grade - Professional Development

11 Qs

Python Dictionaries Quiz

Python Dictionaries Quiz

Assessment

Quiz

Computers

10th Grade

Hard

Created by

Mick Kilpatrick

Used 2+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct syntax to create an empty dictionary in Python?

`empty_dict = []`

`empty_dict = {}`

`empty_dict = ()`

`empty_dict = set()`

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you add a key-value pair to a dictionary in Python?

`dict[key] = value`

`dict.add(key, value)`

`dict.append(key, value)`

`dict.insert(key, value)`

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to remove a key-value pair from a dictionary?

`dict.remove(key)`

`dict.pop(key)`

`dict.delete(key)`

`dict.discard(key)`

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you check if a key exists in a dictionary?

`key in dict`

`dict.has_key(key)`

`dict.contains(key)`

`key.exists(dict)`

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will `len(dict)` return when `dict = {'a': 1, 'b': 2, 'c': 3}`?

`1`

`2`

`3`

`4`

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method returns a list of all the keys in a dictionary?

`dict.keys()`

`dict.values()`

`dict.items()`

`dict.get_keys()`

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the `dict.get(key, default)` method do?

Returns the value for `key` if `key` is in the dictionary, else `default`

Removes the `key` from the dictionary

Adds `default` to the dictionary if `key` is not found

Updates the value of `key` to `default`

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?