Q. What is the output of: print(type(10))?
β
Correct Answer: (A)
<class 'int'>
Explanation: `10` is an integer, so its type is `<class 'int'>`.