Computer Science, asked by aumikachatter6b, 2 months ago

Write rules of Binary Addition.​

Answers

Answered by krishrj
4

Answer:

0 + 0 = 0.

0 + 1 = 1.

1 + 1 = 10. If the sum of 2 bits is greater than 1, we need to shift a column on the left. In decimal system, 1 + 1 = 2. Binary notation of 2 is 10 (1 * 2^1 + 0 * 2^0). So we keep 0 in the 1's column and shift (carry over) 1 to the 2's column

Answered by mullagururk
1

Answer:

There are 3 basic rules for adding binary numbers:

0 + 0 = 0.

0 + 1 = 1.

1 + 1 = 10. If the sum of 2 bits is greater than 1, we need to shift a column on the left. In decimal system, 1 + 1 = 2. Binary notation of 2 is 10 (1 * 2^1 + 0 * 2^0). So we keep 0 in the 1's column and shift (carry over) 1 to the 2's column.

Similar questions