Saved Bookmarks
| 1. |
Write a short note on binary arithmetic. |
|
Answer» Binary arithmetic is an essential part of all the digital computers and many other digital systems. 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 112 Binary Subtraction: Subtraction and borrow, these two words will be used very frequently for the binary subtraction. The four rules of the binary subtraction are: 0-0 = 0 0-1=0 with a borrow 1 1 - 0 = 1 1 - 1 = 0 |
|