Question:

The maximum and minimum value represented in signed 16 bit 2's complement representations are

Show Hint

The range for an n-bit number representation is crucial to remember: \[\begin{array}{rl} \bullet & \text{Unsigned: 0 to \( 2^n - 1 \).} \\ \bullet & \text{Signed (2's Complement): \( -2^{n-1} \) to \( 2^{n-1} - 1 \).} \\ \end{array}\] For 16 bits, \( 2^{15} \) is 32768, which is the key number to derive the range.
Updated On: Oct 18, 2025
  • -16384 and 16383
  • 0 and 32767
  • 0 and 65535
  • -32768 and 32767
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is D

Solution and Explanation

For a signed n-bit 2's complement representation, the range of values that can be represented is from \( -2^{n-1} \) to \( 2^{n-1} - 1 \).
In this case, we have \( n = 16 \).
Minimum Value (most negative): Minimum value = \( -2^{16-1} = -2^{15} \). \( 2^{10} = 1024 \), so \( 2^{15} = 2^5 \times 2^{10} = 32 \times 1024 = 32768 \).
So, the minimum value is -32768.
Maximum Value (most positive):
Maximum value = \( 2^{16-1} - 1 = 2^{15} - 1 \). \( = 32768 - 1 = 32767 \).
The range is from -32768 to 32767.
Was this answer helpful?
0
0