Add the bit strings in the first two columns of the following table and report the answer in the last column in binary notation.
Bit string 1 |
Bit string 2 |
Result of the addition in binary notation |
110011 |
111111 |
|
1001101 |
1100001 |
|
1111101 |
1000111 |
|
110100 |
100000 |
|
1111100 |
1001110 |
a) ['110011', '111111'] Adding 110011 and 111111 in binary 110011 111111 ----------- (1)110010 ----------- Answer: 1110010 b) ['1001101', '1100001'] Adding 1001101 and 1100001 in binary 1001101 1100001 ------------ (1)0101110 ------------ Answer: 10101110 c) ['1111101', '1000111'] Adding 1111101 and 1000111 in binary 1111101 1000111 ------------ (1)1000100 ------------ Answer: 11000100 d) ['110100', '100000'] Adding 110100 and 100000 in binary 110100 100000 ----------- (1)010100 ----------- Answer: 1010100 e) ['1111100', '1001110'] Adding 1111100 and 1001110 in binary 1111100 1001110 ------------ (1)1001010 ------------ Answer: 11001010
Get Answers For Free
Most questions answered within 1 hours.