Q. What is the output of `print(type(True))`?
β
Correct Answer: (B)
<class 'bool'>
Explanation: `True` and `False` are of type `bool` in Python.