Site icon Pathshala Nepal

Write rules for different binary arithmetic.

Online Calculator

Write rules for different binary arithmetic.


1 Answer


Similar to arithmetic calculations, binary can also perform addition, subtraction, division, and multiplication.

Binary Addition

0 + 0 = 0
0 + 1 = 1
1 + 0 = 1
1 + 1 = 10 (with carry over one)

 

Binary subtraction

0 - 0 = 0
0 - 1 = 0
1 - 0 = 0
1 - 1 = 0

 

Binary Multiplications

0 x 0 = 0
0 x 1 = 0
1 x 0 = 0
1 x 1 = 1

Binary Division

0 / 0 = 0
0 / 1 = not defined
1 / 0 = not defined
1 / 1 = 1 (with carry over 1)

Topics from Computer
Related Questions