137k views
12 votes
How to add two binary numbers together (preferably 45 or under words)

2 Answers

3 votes
0 + 0 = 0
0 + 1 = 1
1 + 0 = 1
1 + 1 = 0
1 + 1 + 1 = 1
1 + 1 + 1 + 1 = 0
User Osman Goni Nahid
by
4.6k points
6 votes
The binary addition operation works similarly to the base 10 decimal system, except that it is a base 2 system. The binary system consists of only two digits, 1 and 0. Most of the functionalities of the computer system use the binary number system. The binary code uses the digits 1’s and 0’s to make certain processes turn off or on. The process of the addition operation is very familiar to the decimal system by adjusting to the base 2.

A example is
0 + 0 = 0
0 + 1 = 1
1 + 0 = 1
1 + 1 =10
I hope this helps man
User Stumf
by
4.4k points