Home / Engineering / Python Programming / Question
M
Q.) 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)
Related MCQs on Python Programming
Q. COPY STRUCTURE command is used to
Q. Which of the following is not a strong security protocol
Q. Remote Procedure Calls are used ____________
Q. Which is the best definition of an interaction paradigm?
Q. Forward engineering is also known as
Q. If an entity appears in only one relationship then it is
Q. The testing which is done by going thro’ the code is known as,
Discusssion
Login to discuss.