Dictionary and string

Dictionary and string

1st - 4th Grade

12 Qs

quiz-placeholder

Similar activities

Bridge 'e' match to the correct spelling

Bridge 'e' match to the correct spelling

KG - 3rd Grade

10 Qs

Snake Song

Snake Song

1st - 4th Grade

17 Qs

Python

Python

1st Grade - Professional Development

10 Qs

Training L&M Series Bojonegoro, 3 Agustus 2022

Training L&M Series Bojonegoro, 3 Agustus 2022

1st - 3rd Grade

10 Qs

SQL-Query 1

SQL-Query 1

1st - 5th Grade

11 Qs

Introducción a Pyhton

Introducción a Pyhton

1st Grade

12 Qs

Python - Factory

Python - Factory

3rd - 8th Grade

15 Qs

FinalTest

FinalTest

1st - 2nd Grade

15 Qs

Dictionary and string

Dictionary and string

Assessment

Quiz

Education

1st - 4th Grade

Hard

Created by

Dhirendra yadav

Used 10+ times

FREE Resource

12 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following statements create a dictionary?

d = {}

d = {“john”:40, “peter”:45}

d = {40:”john”, 45:”peter”}

All of the mentioned

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output of the following Python code snippet?

d1 = {"john":40, "peter":45}

d2 = {"john":466, "peter":45}

d1 == d2

True

False

None

Error

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following piece of code?

a={1:"A",2:"B",3:"C"}

print(a.get(1,4))

1

4

A

invalid

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output of above Python code?

d1={"abc":5,"def":6,"ghi":7}


print(d1[0])

abc

5

{"abc":5}

Error

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the result of above Python code?

dict={"Joey":1,"Rachel":2}


dict.update({"Phoebe":2})


print(dict)

{"Joey":1,"Rachel":2,"Phoebe":2}

{"Joey":1,"Rachel":2}

{"Joey":1,"Phoebe":2}

Error

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Which of the following is False regarding dictionary in Python?

dict={"Joey":1,"Rachel":2}


dict.update({"Phoebe":2})


print(dict)

Values of a dictionary can be string,integers or combination of both.

Keys of a dictionary can be string,integers or combination of both

The value of a dictionary can be accessed with the help of indices.

None of the above

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Which of the following will delete key_value pair for key="tiger" in dictionary?


dic={"lion":"wild","tiger":"wild","cat":"domestic","dog":"domestic"}

del dic["tiger"]

dic["tiger"].delete()

delete(dic.["tiger"])

del(dic.["tiger"])

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?