Q. What is the output of the following code?
Code:print(type(10/2))
β
Correct Answer: (B)
<class 'float'>
Explanation: Division in Python always returns a float, even if numbers divide evenly.