Digital Electronics/Circuits Multiple Choice Questions on “1’s, 2’s, 9’s & 10’s Complements – 1”.
1. 1’s complement of 1011101 is ____________
A. 0101110
B. 1001101
C. 0100010
D. 1100101
Answer: C
Clarification: 1’s complement of a binary number is obtained by reversing the binary bits. All the 1’s to 0’s and 0’s to 1’s.
Thus, 1’s complement of 1011101 = 0100010.
2. 2’s complement of 11001011 is ____________
A. 01010111
B. 11010100
C. 00110101
D. 11100010
Answer: C
Clarification: 2’s complement of a binary number is obtained by finding the 1’s complement of the number and then adding 1 to it.
2’s complement of 11001011 = 00110100 + 1 = 00110101.
3. On subtracting (01010)2 from (11110)2 using 1’s complement, we get ____________
A. 01001
B. 11010
C. 10101
D. 10100
Answer: D
Clarification: Steps For Subtraction using 1’s complement are:
-> 1’s complement of the subtrahend is determined and added to the minuend.
-> If the result has a carry, then it is dropped and 1 is added to the last bit of the result.
-> Else, if there is no carry, then 1’s complement of the result is found out and a ‘-’ sign preceeds the result.
1 1 1
Minuend - 1 1 1 1 0
1’s complement of subtrahend - 1 0 1 0 1
____________
Carry over - 1 1 0 0 1 1
1
_____________
1 0 1 0 0
4. On subtracting (010110)2 from (1011001)2 using 2’s complement, we get ____________
A. 0111001
B. 1100101
C. 0110110
D. 1000011
Answer: D
Clarification: Steps For Subtraction using 2’s complement are:
-> 2’s complement of the subtrahend is determined and added to the minuend.
-> If the result has a carry, then it is dropped and the result is positive.
-> Else, if there is no carry, then 2’s complement of the result is found out and a ‘-’ sign preceeds the result.
1’s complement of subtrahend - 1 1 0 1 0 0 1
_________________
1 1 1
Minuend - 1 0 1 1 0 0 1
2’s complement of subtrahend - 1 1 0 1 0 1 0
_________________
Carry over - 1 1 0 0 0 0 1 1
Answer: 1000011
5. On subtracting (001100)2 from (101001)2 using 2’s complement, we get ____________
A. 1101100
B. 011101
C. 11010101
D. 11010111
Answer: B
Clarification: Steps For Subtraction using 2’s complement are:
-> 2’s complement of the subtrahend is determined and added to the minuend.
-> If the result has a carry, then it is dropped and the result is positive.
-> Else, if there is no carry, then 2’s complement of the result is found out and a ‘-’ sign preceeds the result.
1’s complement of subtrahend - 1 1 0 0 1 1
_________________
Minuend - 1 0 1 0 0 1
2’s complement of subtrahend - 1 1 0 1 0 0
_________________
Carry over - 1 0 1 1 1 0 1
Answer: 011101
6. On addition of 28 and 18 using 2’s complement, we get ____________
A. 00101110
B. 0101110
C. 00101111
D. 1001111
Answer: B
Clarification: Steps for Binary Addition Using 2’s complement:
-> The binary equivalent of the two numbers are obtained and added using the rules of binary addition.