-
JavaScript _________ when there is an indefinite or an infinite value during an arithmetic computation.
-
- Prints the value as such
- Prints an exception error
- Prints an overflow error
- Displays “Infinity”
- None of these
Correct Option: D
When the result of a numeric operation is larger than the largest represent able number (overflow), JavaScript prints the value as Infinity. Similarly, when a negative value becomes larger than the largest represent able negative number, the result is negative infinity. The infinite values behave as you would expect: adding, subtracting, multiplying, or dividing them by anything results in an infinite value (possibly with the sign reversed).