Q. What will `dict([(1, 'a'), (2, 'b')])` return?
β
Correct Answer: (A)
{1: 'a', 2: 'b'}
Explanation: `dict()` can be created from a list of key-value tuples.