Q. Which of these will return the number of keys in a dictionary `d`?
β
Correct Answer: (A)
len(d)
Explanation: `len(d)` returns the number of keys in dictionary `d`.