What are the smallest and largest integer values for the primitive type double?
Answers
Answered by
1
Explanation:
The short data type is a 16-bit signed Java primitive integer data type. Its range is -32768 to 32767 (or -215 to 215 – 1). Unlike int and long literals, there is no short literal. However, you can assign any int literal that falls in the range of short (-32768 to 32767) to a short variable.
Similar questions