Q. What is the output of `print(3 == 3.0)`?
β
Correct Answer: (A)
True
Explanation: Python considers `3` and `3.0` equal in value, so the comparison returns `True`.