
Dictionary and string
Authored by Dhirendra yadav
Education
1st - 4th Grade
Used 10+ times

AI Actions
Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...
Content View
Student View
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"])
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?