Q. What is the output of `type(True)`?
β
Correct Answer: (A)
<class 'bool'>
Explanation: `True` is a boolean value, so its type is `bool`.