Q. What is the output of the following code?
Code:
print(type({}))
β
Correct Answer: (A)
<class 'dict'>
Explanation: Empty braces `{}` create an empty dictionary, not a set.