What are the rules to add two binary numbers
Answers
Answered by
2
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...
I hope it May helpful to you ...
Similar questions