Ask Question
9 October, 21:49

System uses a 6-bit 2's complement signed integer representation. What is the range of decimal values it can represent?

+1
Answers (1)
  1. 9 October, 23:21
    0
    -32 to + 31

    Explanation:

    6 bit 2s complement representation will be of the form b1b2b3b4b5b6 where each bit is either 0 or 1.

    The largest positive number that can be represented using this scheme is 011111

    Translating this to decimal this is 1*2^4 + 1^2^3 + 1^2^2 + 1^2^1 + 1^2^0

    =16 + 8 + 4 + 2 + 1 = 31

    The smallest negative number that can be represented using this scheme is 100000

    Translating this to decimal = - 1 * 2^5 = - 32

    So the range of decimal values that can be represented is - 32 to + 31.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “System uses a 6-bit 2's complement signed integer representation. What is the range of decimal values it can represent? ...” in 📘 Computers and Technology 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