Q. What is the result of `5 == 5.0` in Python?
β
Correct Answer: (A)
True
Explanation: Python considers `5` (int) and `5.0` (float) equal in value when compared using `==`.