Q. What will `dict.fromkeys(['a', 'b'], 0)` return?
β
Correct Answer: (A)
{'a': 0, 'b': 0}
Explanation: `fromkeys()` creates a new dictionary with given keys and default value.