Question: Exercise 1.7.11: Integer Overflow 5 points Let's Go! If an expression would evaluate to anintvalue outside of the allowed range, an integer overflow occurs. This
Exercise 1.7.11: Integer Overflow
5 points
Let's Go!
If an expression would evaluate to anintvalue outside of the allowed range, an integer overflow occurs. This could result in an incorrect value within the allowed range.
In this program you will test forunderflowandoverflowin Java by adding 1 to the maximum value and subtracting 1 from the minimum value to see what happens to the output. Your output should include 4 items:
- The minimum value for an integer.
- The maximum value for an integer.
- The minimum value subtracted by 1.
- The maximum value with 1 added.
What do the last two lines print out? Did this surprise you? What do you think it happening here?
NOTE: Refer back to the previous example on Min and Max Values of Integers if you need to.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
