(i) (a) To get the value for "Raj": print(D["Raj"])
This statement accesses the value mapped to the key "Raj"
and displays it using print(). OR (i) (b) To get the length of D1: print(len(D1))
This statement uses the built-in len() function
to count the number of key-value pairs in D1 and display it. (ii) (a) To merge D into D1: D1.update(D)
The update() method adds all key-value pairs
from D to D1. If a key already exists,
its value will be updated with the value from D. OR (ii) (b) To delete "Amit" from D1: D1.pop("Amit")
The pop() method removes the item with the given key
from the dictionary D1.