Ask Question
1 October, 13:33

What is the range of a 32-bit signed integer?

+2
Answers (1)
  1. 1 October, 14:33
    0
    From - 2147483647 to 2147483648.

    Explanation:

    A 32 bit integer has 2^32 = 4294967296 possible values. A signed integer has positive and negative values as well as the zero.

    Of these values (2^32) / 2 will be positive, (2^32) / 2 - 1 will be negative and one will be the zero.

    Therefore the range is from - (2^32) / 2 + 1 to (2^32) / 2.

    This can also be expressed as from - 2147483647 to 2147483648.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What is the range of a 32-bit signed integer? ...” in 📙 Engineering if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers