You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
Once you understand binary numbers, you need to be able to perform arithmetic operations on them. This lesson covers binary addition and binary shifts, both of which are required for the GCSE Computer Science exam.
Binary addition follows rules similar to denary addition, but with only two digits (0 and 1). The key rules are:
| Addition | Result | Carry |
|---|---|---|
| 0 + 0 | 0 | 0 |
| 0 + 1 | 1 | 0 |
| 1 + 0 | 1 | 0 |
| 1 + 1 | 0 | 1 (carry 1 to the next column) |
| 1 + 1 + 1 | 1 | 1 (carry 1 to the next column) |
The most important rule to remember is: 1 + 1 = 10 in binary (just as 9 + 1 = 10 in denary — you write 0 and carry 1).
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.