IGDTUW 2026 — Computer PYQ
IGDTUW | Computer | 2026What is the result of the following binary addition?
1101+0011=?
Choose the correct answer:
- A.
10000
(Correct Answer) - B.
1111
- C.
1111
- D.
10001
10000
Explanation
The correct option is (a) 10000.
Detailed Explanation:
Binary addition follows four basic rules for adding single bits:
0+0=0
0+1=1
1+0=1
1+1=0(with a carry over of 1 to the next column)
1+1+1=1(with a carry over of 1 to the next column)
Let's align the numbers vertically and add them from right to left (least significant bit to most significant bit), tracking the carries:
Plaintext
Carry: 1 1 1 1
1 1 0 1 (which is 13 in decimal)
+ 0 0 1 1 (which is 3 in decimal)
---------
1 0 0 0 0 (which is 16 in decimal)
Step-by-step column addition:
First column (Rightmost): 1+1=0 with a carry of 1.
Second column: 0+1+1 (carry)=0 with a carry of 1.
Third column: 1+0+1 (carry)=0 with a carry of 1.
Fourth column: 1+0+1 (carry)=0 with a carry of 1.
Fifth column (Leftmost): Bring down the remaining final carry of 1.
The result of the binary addition is
10000
, matching option (a).
