You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
This lesson identifies the most common mistakes that students make in OCR J277 exams and provides practical strategies to avoid them. Learning from others' mistakes is one of the most efficient ways to improve your exam performance.
The problem: Students rush into writing an answer without carefully reading what is asked. They answer a different question from the one set.
How to avoid it:
OCR Exam Tip: If a question says "Explain two reasons...", you need exactly two reasons, each with an explanation. Writing three reasons does not earn extra marks and wastes time.
The pre-writing question check — applied before any answer is started — can be drawn as a short decision flow:
flowchart TD
A[Read question twice] --> B[Underline command word]
B --> C[Underline key technical terms]
C --> D[Note mark allocation]
D --> E{Asks for specific count?}
E -->|Yes e.g. 'two reasons'| F[Plan exactly that many points]
E -->|No| G[Plan 1 point per mark]
F --> H[Begin writing]
G --> H
The problem: Students write only the final answer for calculation questions. If the answer is wrong, they get zero marks.
How to avoid it:
Example of good working:
File size=width×height×colour depth=1920×1080×24=49,766,400 bits=49,766,400÷8=6,220,800 bytes=6,220,800÷1024=6,075 KB=6,075÷1024=5.93 MBEven if you make an arithmetic error, the formula and method marks are still available.
| Commonly confused | Concept A | Concept B |
|---|---|---|
| RAM vs ROM | Volatile, read/write, stores running programs | Non-volatile, read-only, stores boot instructions |
| LAN vs WAN | Small area (building/site), high speed | Large area (country/world), lower speed |
| Lossy vs Lossless | Permanently removes data, smaller files | Preserves all data, larger files |
| Compiler vs Interpreter | Translates all at once, creates executable | Translates line by line, no executable |
| HTTP vs HTTPS | Unencrypted web protocol | Encrypted web protocol |
| Bit vs Byte | Single binary digit (0 or 1) | 8 bits |
| ASCII vs Unicode | 128/256 characters, English | 149,000+ characters, all languages |
How to avoid it: Create comparison flashcards for easily confused pairs. Test yourself regularly.
The problem: Students write a full paragraph for a 1-mark question, wasting valuable time.
How to avoid it:
The problem: Students forget closing keywords, miss variable initialisations, or write incomplete programs.
Common code mistakes:
| Mistake | Impact |
|---|---|
Missing endif, next, endwhile | Syntax error — code would not run |
| Not converting input to integer | Type error when performing arithmetic |
Using = instead of == for comparison | Logic error — assigns instead of compares |
| Not initialising counters/totals to 0 | Logic error — incorrect result |
| Array index out of bounds | Runtime error — crash |
How to avoid it: After writing code, check every structure is closed and trace through with a sample input.
The problem: Students write short, unstructured answers for 6-8 mark questions, achieving only Level 1 (1-2 marks).
How to avoid it:
| Operation | Rule | Students often confuse with |
|---|---|---|
| AND | Output 1 only when BOTH are 1 | OR |
| OR | Output 1 when AT LEAST ONE is 1 | AND |
| XOR | Output 1 when inputs are DIFFERENT | OR |
| Left shift | Multiplies by 2 per position | Right shift |
| Right shift | Divides by 2 per position | Left shift |
The problem: Students spend too long on difficult questions and run out of time for easier questions later in the paper.
How to avoid it:
The problem: Students leave difficult questions completely blank, guaranteed to score zero.
How to avoid it:
OCR Exam Tip: A blank answer always scores zero. A partial answer might score 1-3 marks. Those marks can make the difference between grades.
The problem: Students know the content but lose marks through poor exam technique.
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.