Intermediate python

Intermediate python

9th - 12th Grade

9 Qs

quiz-placeholder

Similar activities

J277 Programming - Outputting Data

J277 Programming - Outputting Data

9th - 11th Grade

10 Qs

Dictionary Class 11

Dictionary Class 11

11th - 12th Grade

12 Qs

Python Revision

Python Revision

7th - 9th Grade

14 Qs

Review

Review

9th - 12th Grade

10 Qs

Python - Mid-Assessment

Python - Mid-Assessment

9th Grade

14 Qs

Python (Selection)

Python (Selection)

8th - 10th Grade

13 Qs

N5 SDD - Python input and output

N5 SDD - Python input and output

7th - 11th Grade

12 Qs

Python Selection

Python Selection

8th - 9th Grade

10 Qs

Intermediate python

Intermediate python

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Regensu Live

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Dictionary = {“name”:”Max”,”age”:27}

print(dictionary)

What is the output?

{‘name’:’Max’,’age’:27}

{name:Max,age:27}

‘name’:’Max’,’age’:27

name:Max,age:27

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the ways to make a dictionary?

A = {“name”:Max}

A = dict(name=Max

A = [“name”:Max]

A = [name = Max]

A = (“name”:”Max”)

A = dict[name = Max

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a dictionary?

Items with Key-Value Pairs

Immutable list

Mutable list

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Dictionary = {“name”:”Max”}

Value = dictionary[“name”]

print(Value)

What is the output?

Max

“Max”

{‘Max’}

[Max]

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

D = {“name”:”Max”}

D[“name”] = “Sam”

Print(D)

What is the output?

{‘name’:’Sam’}

Sam

[‘name’]

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you add something in a dictionary?

Dictionary[“age”] = 3

Dictionary.add(“age”: 3)

Dictionary.update(“age”:3)

7.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

What are the ways to delete an item in a dictionary?

del D[“name”]

D.remove[name]

D.pop(“name”)

D.delete(“name”)

8.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

What are the ways to find if an item exists in a dictionary?

If “name” in dictionary:

print(“exists”)

Else:

print(“doesn’t exist”)

try:

print(dictionary[“name”])

except:

print(“doesn’t exist”)

dictionary.find(“name”)

dictionary.locate(“name”)

9.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

How do you copy dictionaries?

DC = D

DC = D.copy()

D.copy()

D.replicate()