Q. What is the output of the following code?
Code:print(type(True))
β
Correct Answer: (B)
<class 'bool'>
Explanation: True and False are boolean values of type bool.