Overflow and Underflow
A variable of type signed int stores a value of -2147483648. If the variable value is incremented, what exception will occur?
No exception
A variable of type signed short stores a value of 32767. If the variable value is decremented, what exception will occur?
No exception
A variable of type unsigned short stores a value of 0. If the variable value is incremented, what exception will occur?
No exception
A variable of type unsigned short stores a value of 32767. If the variable value is decremented, what exception will occur?
No exception
A variable of type unsigned char stores a value of 255. If the variable value is incremented, what exception will occur?
Overflow
