Dictionary in Python MCQs Exercise II

Ques 1 Dictionary


What is the output of the following Python Code?


di={1:1,2:4,4:16}
di[5]=15

A No any Insertion will Performed.
B It will create one another element in dictionary.
C It will throw an Error.
D None of these