Q. What is the output of `print(type((1,)))`?
β
Correct Answer: (A)
<class 'tuple'>
Explanation: A comma is required to create a single-element tuple: `(1,)` is a tuple, `(1)` is just an integer.