Ask Question
30 December, 12:16

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

+2
Answers (1)
  1. 30 December, 13:23
    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?
Find an answer to your question ✅ “What is the range of a 32-bit signed integer? ...” in 📘 Engineering if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers