Q. What is the output of the following code
Code:
print type(type(int))
β
Correct Answer: (B)
type ‘type’
Explanation: The function type() returns the class of the argument to which the object belongs. type(int) returns an object of type “type”.