Q. What is the output of `type({})`?
β
Correct Answer: (B)
<class 'dict'>
Explanation: `{}` creates an empty dictionary, so `type({})` returns `<class 'dict'>`.