Multiple choice

The Range of Short signed integer is

  1. � 128 to + 127

  2. 0 to 255

  3. 0 to 65535

  4. � 32768 to + 32767

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

A signed short integer uses 16 bits: one bit for sign, 15 for magnitude. Range is -2^15 to 2^15-1, which is -32768 to 32767. Options A, B, and C represent unsigned or incorrect ranges.