114k views
3 votes
Compute the sum with carry-wraparound (sometimes called the one's complement sum) of the following two numbers. Give answer in 8-bit binary, zero-padded to 8 bits if necessary, with no spaces (e.g. 00101000). Please note this is different than the checksum calculation. NOTE: Canvas will remove any leading zeros from your answer. This will not cause your answer to be marked as incorrect. 10010110 10010000

1 Answer

5 votes

Answer:

00100111

Step-by-step explanation:

Given;

10010110

10010000

Add these like normal binary numbers

10010110

10010000

-------------

(1)00100110

-------------

ignore extra (1) on left since it's a carry.

Add 1 to the above result to make it a 1's complement result

00100110 + 1 = 00100111

Answer: 00100111

User Tscho
by
6.3k points