What is the significance of the number, 32767?

32767 + 1 is a power of 2 Binary representation of numbers uses powers of 2. So, in an 4-bit structure, 0101 is 2^0 x 1, 2^1 x 0, 2^2 x 1, and 2^3 x 0 which is 5.

The MSB is used for sign and unsigned integers.

Leave a Comment