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)
Be the first to start discuss.
Related MCQs
Q. Which one of the following is not a higher –layer SSL protocol?
Q. In FTP protocol, a client contacts a server using ______ as the transport protocol.
Q. Which is the best definition of an interaction paradigm?
Q. Non functional testing is performed only at system testing level. True or false.
Q. _______________ is a measure of the degree of interdependence between modules.
Q. which one of the following is the first spreadsheet application?
Discusssion
Login to discuss.