Q. Which is a correct way to merge two dictionaries `d1` and `d2` in Python 3.9+?
β
Correct Answer: (C)
d1 |= d2
Explanation: The `|=` operator merges two dictionaries in Python 3.9 and later.