Q. What is the output of `type((1,))`?
β
Correct Answer: (C)
<class 'tuple'>
Explanation: A single-element tuple requires a comma: `(1,)`.