Q. What will be the output of this code snippet?
Code:
print(0.1 + 0.2 == 0.3)
β
Correct Answer: (B)
False
Explanation: Due to floating-point precision issues, the sum is not exactly 0.3.