Exam Tips - Binary Arithmetic
Part of Binary Arithmetic — GCSE Computer Science
This exam tips covers Exam Tips - Binary Arithmetic within Binary Arithmetic for GCSE Computer Science. Revise Binary Arithmetic in Memory & Storage for GCSE Computer Science with 15 exam-style questions and 18 flashcards. This topic appears regularly enough that it should still be part of a steady revision cycle. It is section 9 of 10 in this topic. Treat this as a marking guide for what examiners are looking for, not just a fact list.
Topic position
Section 9 of 10
Practice
15 questions
Recall
18 flashcards
Exam Tips - Binary Arithmetic
Most common exam questions:
- "Add these binary numbers" → Show carries, check your answer by converting to denary
- "What is overflow?" → Result too large for available bits, extra bits lost
- "Shift left by 2" → Multiplies by 4 (2²), add two 0s on right
- "Shift right by 1" → Divides by 2, add 0 on left, rightmost bit lost
- "Convert to two's complement" → Flip all bits, add 1
Binary addition tips:
- Work from RIGHT to LEFT (just like denary addition)
- Write carry bits above the calculation (small numbers)
- Remember: 1 + 1 = 0 with carry 1
- Always check your answer by converting to denary!
Shift operation tips:
- Left shift n places = multiply by 2ⁿ
- Right shift n places = divide by 2ⁿ
- Always fill with 0s (for unsigned numbers)
- Show the original and result clearly
Common mistakes to avoid:
- Forgetting to carry in binary addition
- Losing track of which direction to shift
- Saying "shift left divides" - NO! Left = multiply, right = divide
- Forgetting to add 1 after flipping bits in two's complement
- Not recognizing overflow when carry out of MSB