CS Python Fundamentals Test 12 PRACTICE

CS Python Fundamentals Test 12 PRACTICE

9th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

Python-list,tuple,Dictionary

Python-list,tuple,Dictionary

11th - 12th Grade

7 Qs

Dictionary Class 11

Dictionary Class 11

11th - 12th Grade

12 Qs

Review

Review

9th - 12th Grade

10 Qs

Chapter Dictionaire

Chapter Dictionaire

9th Grade

11 Qs

Quiz on 19 Dec

Quiz on 19 Dec

11th Grade

10 Qs

Python Fundamentals for Grade 9 Students

Python Fundamentals for Grade 9 Students

9th Grade

10 Qs

Computer Science class 11

Computer Science class 11

11th Grade

10 Qs

Data Handling in Python

Data Handling in Python

11th Grade

10 Qs

CS Python Fundamentals Test 12 PRACTICE

CS Python Fundamentals Test 12 PRACTICE

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Scott Chamberlain

Used 9+ times

FREE Resource

10 questions

Show all answers

1.

DRAG AND DROP QUESTION

1 min • 1 pt

Python Dictionaries store information using pairs of ​ (a)   and ​ (b)  

keys
values
indices
parameters

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The dictionary dnry is initialized as follows:

dnry = {"L": 8, "W": 5, "H": 11}

Which statement would evaluate to 5?

dnry[1]

dnry["W"]

dnry["5"]

dnry[2]

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

For which Python data type does the order of the items matter?

dictionaries only

lists only

both dictionaries and lists

neither dictionaries nor lists

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Dictionary dnry is defined as follows:

dnry = {"A": "x", "B": "y", "C": "z"}

Which Python statement will return True?

I. "y" in dnry

II. "C" in dnry

I only

II only

Both I and II

Neither I nor II

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is printed by the code shown here?

{'PG': 'Adams', 'SG': 'Berk', 'C': 'Dugan'}

{'PG': 'Adams', 'SG': 'Berk', 'C': 'Nelson'}

{'PG': 'Adams', 'SG': 'Berk', 'C': 'Dugan', 'SF': 'Harris', 'C': 'Nelson'}

{'PG': 'Adams', 'SG': 'Berk', 'C': 'Nelson', 'SF': 'Harris'}

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which statement(s) will set the value of the key "99" to "Judge" in the dictionary NYY if the key "99" is found, and add the key/value pair if the key "99" is not found?

I. NYY["99"] = "Judge"

II. NYY.update({"99": "Judge"})

III. NYY.setdefault("99", "Judge")

I only

II only

II and III only

I and II only

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What will be the output of the code shown here?

0

3

10

13

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?