python dictionary

python dictionary

Assessment

Quiz

Computers

8th Grade

Hard

Created by

surag patel

Used 2+ times

FREE Resource

Student preview

quiz-placeholder

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which one of these is a dictionary?

x = ('apple', 'banana', 'cherry')

x = {'type' : 'fruit', 'name' : 'banana'}

x = ['apple', 'banana', 'cherry']

None

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True or False.
Dictionary items cannot be removed after the dictionary has been created.

True

True

False

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True or False.
A dictionary cannot have two keys with the same name.

True

False

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Select the correct function to print the number of key/value pairs in the dictionary:

x = {'type' : 'fruit', 'name' : 'banana'}
print((_________x))

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True or False. You can access item values by referring to the key name.

True

False

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Use the get method to print the value of the "model" key of the car dictionary.

car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
print(__________)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following code:
x = {'type' : 'fruit', 'name' : 'banana'}
print(x['type'])
What will be the printed result?

banana

fruit

type = 'fruit'

None

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?