Question 12:Find the output of the following program:
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 , end = " " )
|
(A) Google 1 Facebook 2 Microsoft 2 GFG 1 Youtube 3
(B) Runtime error
(C) Compilation error
(D) None of these
Answer: (A)
Explanation: dictionary1.update(dictionary2) is used to update the entries of dictionary1 with entries of dictionary2. If there are same keys in two dictionaries, then the value in the second dictionary is used.
Quiz of this Question
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
17 Sep, 2020
Like Article
Save Article