Q. What is the output of this code?
Code:
print(type({}))
β
Correct Answer: (B)
<class 'dict'>
Explanation: {} creates an empty dictionary, not a set.