355 views
1 votes
1 votes
In which of the following signed number representations we have more positive numbers than negative numbers?
  1. $1's$ Complement Representation
  2. $2's$ Complement Representation
  3. Sign magnitude Representation
  4. None of the Above

1 Answer

Best answer
6 votes
6 votes
With $n$ bits we can represent $2^n$ distinct numbers. In both $1's$ complement as well as sign magnitude representations we have $2$ zeroes, and the rest $2^n -2$ numbers are used to represent equal number of positive and negative numbers.
     
     In $2's$ complement representation there is a single zero. The rest $2^n-1$ numbers are split to $2^{n-1}-1$ positive numbers and $2^{n-1}$ negative numbers.
     
     So, in none of the given representations we have more positive numbers than negative numbers.
     
     Correct Answer: D.
selected by
Answer:

Related questions

3 votes
3 votes
1 answer
2
4 votes
4 votes
1 answer
3
gatecse asked Jul 19, 2020
238 views
Let $M$ be the maximum unsigned integer value representable with $4$ bits and $N$ be the maximum signed value representable with $4$ bits (using 2's complement representa...
1 votes
1 votes
1 answer
4
gatecse asked Jul 19, 2020
150 views
Which of the following boolean expression is not equal to the other three?$x' \oplus y$$xy+x'y'$$x' \oplus y'$$x \oplus y'$