+2 votes
in Class 11 by kratos

Write a short note on binary arithmetic.

1 Answer

+4 votes
by kratos
 
Best answer

Binary arithmetic is essential part of all digital computers and many other digital system.

1. Binary Addition: It is a key for binary subtraction, multiplication, division. The four rules of the binary addition are.

0 + 0 = 0

0 + 1 = 1

1 + 0 = 1

1 + 1 = 0 with a carry bit 1.

2. Binary Subtraction:

Subtraction and Borrow, these two words will be used very frequently for the binary subtraction.There are four rules of the binary substration. The four rules of the binary Subtraction are

0 – 0 = 0

0 – 1 = 0 with a borrow 1

1 – 0 = 1

1 – 1 = 0

...