CBSE Class 11 Informatics Practices
Question 28 of 66
Dictionary — Question 11
Back to all questionsNone
Reason — The output is "None" when using print(D1.update(D2)) because the update() method for dictionaries modifies the dictionary in place. It does not return the updated dictionary itself; instead, it returns "None".