Dictionary in Python

Dictionary in Python

11th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

1.4 Review, navigate, and edit a document

1.4 Review, navigate, and edit a document

8th Grade - University

6 Qs

Found. of IT: Security Threats - B

Found. of IT: Security Threats - B

9th - 12th Grade

10 Qs

Python Quiz for Grade 11 List, Tuple &  Strings

Python Quiz for Grade 11 List, Tuple & Strings

11th Grade

10 Qs

Dictionary

Dictionary

11th Grade

14 Qs

PY LEVEL 2 QUIZ 3

PY LEVEL 2 QUIZ 3

8th - 12th Grade

15 Qs

12th cs cha13

12th cs cha13

12th Grade

10 Qs

Python Data Types Quiz

Python Data Types Quiz

11th Grade

10 Qs

Python lists and tuples

Python lists and tuples

12th Grade

10 Qs

Dictionary in Python

Dictionary in Python

Assessment

Quiz

Computers

11th - 12th Grade

Hard

Created by

Suman Joshi

Used 496+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following code

dict1 = {"key1":1, "key2":2}

dict2 = {"key2":2, "key1":1}

print(dict1 == dict2)

True

False

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Select correct ways to create an empty dictionary

sampleDict = {}

sampleDict = dict()

sampleDict = dict{}

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Please select all correct ways to empty the following dictionary

student = {

"name": "Emma",

"class": 9,

"marks": 75

}

del student

del student[0:2]

student.clear()

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Items are accessed by their position in a dictionary

True

False

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Dictionary keys must be immutable

True

False

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

In Python, Dictionaries are immutable

True

False

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

________________method removes all items from the particular dictionary.

clear( )

pop( )

del ( )

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?