Binary - Basic Principles |
There are 4 rules for carrying out addition of two binary digits these are:
There are 8 rules for carrying out addition of three binary digits these are:
Add 01011011 + 00111010 (91 + 58) Answer: 10010101 = 149 |
Task 1 | ||||||||||||||||||||||||
Add up the following pairs of binary numbers. Use the table below to help.
|
8 Bit numbers |
8 bit numbers follow exactly the same rule set as 4 bit numbers, the difference being that you can work with values up to 255. |
Task 3 | ||||||||||||||||||||||||||||||||||||||||
Add up the following pairs of 8 bit binary numbers. Use the table below to help.
| ||||||||||||||||||||||||||||||||||||||||
0 + 0 + 0 = 0
| ||||||||||||||||||||||||||||||||||||||||
Adding three binary numbers | ||||||||||||||||||||||||||||||||||||||||
To add three binary numbers, add the first two, and then add the third to the result. E.g to add the three binary numbers 00101100, 00010001 and 10000101: 00101100 00010001 + 00111101 10000101 + 11000010 |
Overflow |
Overflow occurs when the result of adding two binary numbers is greater than the number of bits allowed. The maximum value that can be held in an 8-bit register is 255. The computer would need 9 bits to represent 332 so this 9th bit doesn’t fit in the byte allocated. Which is an overflow error. |
Questions |
011000001
0100011010
01111001
011011100
|