-
Which data type is most suitable for storing a number 65000 in a 32-bit system?
-
- long
- int
- signed short
- unsigned short
- None of these
Correct Option: D
65000 comes in the range of short (16-bit) which occupies the least memory. Signed short ranges from -32768 to 32767 and hence we should use unsigned short.