Q. What does the following code output?
Code:console.log(0.1 + 0.2 === 0.3);
β
Correct Answer: (B)
false
Explanation: Due to floating-point precision issues in JavaScript, `0.1 + 0.2` does not exactly equal `0.3`, so the comparison returns `false`.