Multiple choice The Range of Short signed integer is � 128 to + 127 0 to 255 0 to 65535 � 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.