Q. What is the output of `print(type({}))`?
β
Correct Answer: (C)
<class 'dict'>
Explanation: `{}` creates an empty dictionary in Python. An empty set must be created with `set()`.