Multiple Choice
Predict the output of following python programs
Dictionary1 = {'Google' : 1,'Facebook' : 2,'Microsoft' : 3}
Dictionary2 = {'GFG' : 1,'Microsoft' : 2,'Youtube' : 3}
Dictionary1.update(dictionary2) ;
For key, values in dictionary1.items() :
Print(key, values)
A) Compilation error
B) Runtime error
C) („Google?, 1)
(„Facebook?, 2)
(„Youtube?, 3)
(„Microsoft?, 2)
(„GFG?, 1)
D) None of these
Correct Answer:

Verified
Correct Answer:
Verified
Q21: What is the output of the following
Q22: What is the output of the following
Q23: What is the output of the following
Q24: What is the output of the following
Q25: What is the output of the following
Q27: What is the output of the following
Q28: What is the output of the following
Q29: What is the output of the following
Q30: What is the output of the following
Q31: What is the output of the following