You are viewing a free preview of this lesson.
Subscribe to unlock all 4 lessons in this course and every other course on LearningBro.
This lesson provides a comprehensive breakdown of OCR A-Level Computer Science Paper 1 — its structure, question types, topic weighting, worked examples of common calculation questions, command words, and a time management strategy you can apply in every sitting. Knowing the exam inside-out is the foundation of effective preparation.
OCR A-Level Computer Science (specification H446) is assessed through two written exams and a programming project (the Non-Exam Assessment, or NEA). The qualification is graded A*-E.
| Component | Title | Marks | Duration | Weighting |
|---|---|---|---|---|
| H446/01 | Computer Systems | 140 | 2 h 30 min | 40% |
| H446/02 | Algorithms and Programming | 140 | 2 h 30 min | 40% |
| H446/03 | Programming Project (NEA) | 70 | Coursework | 20% |
Key Point: The two written papers together account for 80% of your A-Level grade. Paper 1 alone is worth 40%, so strong exam technique here can make a decisive difference to your final grade.
Paper 1 is a written exam (pen and paper) lasting 2 hours 30 minutes with a total of 140 marks. It tests the following areas of the specification:
| Section | Topic Area |
|---|---|
| 1.1 | The characteristics of contemporary processors, input, output and storage devices |
| 1.2 | Software and software development |
| 1.3 | Exchanging data |
| 1.4 | Data types, data structures and algorithms |
| 1.5 | Legal, moral, cultural and ethical issues |
The paper is divided into several questions, each of which may contain multiple parts. Questions progress from short-answer recall through to extended-response discussion. There is no choice of questions — you must answer everything.
Paper 1 uses a range of question formats. Understanding these helps you allocate time and structure your answers correctly.
These test recall and straightforward application. They typically ask you to state, define, identify, or give an example.
Example (2 marks): State two characteristics of RISC processors.
Model answer:
These require you to explain, describe, or compare. You need more detail and should demonstrate understanding, not just recall.
Example (4 marks): Describe how the fetch-decode-execute cycle operates.
Model answer: The Program Counter (PC) holds the address of the next instruction (1). This address is copied to the Memory Address Register (MAR) and sent along the address bus to main memory (1). The instruction at that address is copied into the Memory Data Register (MDR) via the data bus (1). The instruction is then copied into the Current Instruction Register (CIR) where it is decoded and executed by the processor (1).
Paper 1 includes calculation questions on topics such as binary arithmetic, floating-point representation, and file sizes. These always require you to show your working.
These are levels-marked questions (Level 1, Level 2, Level 3) that require you to discuss, evaluate, or compare. They often involve topics from section 1.5 (legal, moral, ethical) or require you to compare technologies, architectures, or approaches.
Based on past papers, the approximate mark distribution across Paper 1 topics is:
| Topic | Approximate Marks | Percentage of Paper |
|---|---|---|
| 1.1 Processors, input, output and storage | 30-40 | 21-29% |
| 1.2 Software and software development | 25-35 | 18-25% |
| 1.3 Exchanging data | 25-35 | 18-25% |
| 1.4 Data types, data structures and algorithms | 25-35 | 18-25% |
| 1.5 Legal, moral, cultural and ethical issues | 10-20 | 7-14% |
Key Point: Section 1.1 (processors and hardware) and section 1.4 (data types, structures, and algorithms) consistently carry the heaviest weighting. Do not underestimate section 1.5 — while it has fewer marks, the extended-response questions drawn from this area are levels-marked and can swing your grade.
Question: Convert the unsigned binary number 10110101 to denary.
Working:
| Bit position | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
|---|---|---|---|---|---|---|---|---|
| Place value | 128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 |
| Bit | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 |
128 + 32 + 16 + 4 + 1 = 181
Question: Represent -45 in 8-bit two's complement binary.
Working:
Verification: -128 + 64 + 16 + 2 + 1 = -128 + 83 = -45. Correct.
Question: A floating-point number uses a 6-bit mantissa and a 4-bit exponent, both in two's complement. The mantissa is 011010 and the exponent is 0011. Calculate the denary value.
Working:
Question: A bitmap image is 1920 x 1080 pixels with a colour depth of 24 bits. Calculate the file size in megabytes. Show your working.
Working:
Question: A network uses the subnet mask 255.255.255.192. How many usable host addresses are available per subnet?
Working:
OCR uses specific command words, and each one tells you exactly what the examiner expects. Misreading the command word is one of the most common sources of lost marks.
| Command Word | What It Means | Typical Marks | What the Examiner Expects |
|---|---|---|---|
| State | Give a brief, factual answer | 1-2 | A short statement with no explanation needed |
| Identify | Select or recognise something | 1-2 | Name or point out the correct item |
| Define | Give the meaning of a term | 1-2 | A precise, technical definition |
| Describe | Set out the main characteristics or features | 2-4 | Say what happens or what something is, with relevant detail |
| Explain | Give reasons or make relationships clear | 3-6 | Say what happens AND why, using causal language (because, therefore, this means) |
| Compare | Identify similarities and/or differences | 3-6 | Cover BOTH items using comparative language (whereas, in contrast, similarly) |
| Discuss | Consider different aspects and reach a conclusion | 8-12 | Present multiple viewpoints, provide evidence, reach a balanced conclusion |
| Evaluate | Judge the value, importance, or effectiveness | 8-12 | Weigh up strengths and weaknesses, make a justified judgement |
| Calculate | Work out a numerical answer | 2-6 | Show all working, write the equation, give the correct unit |
Exam Tip: Before writing any answer, underline the command word in the question. This forces you to check whether you need to merely describe something or whether you must also explain why. Getting this wrong can cost you every mark on a question.
With 140 marks in 150 minutes, you have approximately 1.07 minutes per mark — effectively 1 minute per mark as a working guide.
| Marks | Suggested Time | Guidance |
|---|---|---|
| 1-2 marks | 1-2 minutes | Quick recall. Write the answer and move on. |
| 3-4 marks | 3-4 minutes | Brief explanation or description. One point per mark. |
| 5-6 marks | 5-6 minutes | Detailed explanation with examples or a complete calculation. |
| 8 marks | 8-10 minutes | Extended response. Spend 1-2 minutes planning before writing. |
| 12 marks | 12-15 minutes | Major extended response. Plan for 2-3 minutes, write for 10-12 minutes. |
Exam Tip: Never leave a question blank. Even a partially correct answer can earn marks. For a 12-mark question, writing three relevant sentences with correct terminology could earn Level 1 (1-4 marks), which is far better than zero.
| Pitfall | Why It Loses Marks | How to Avoid It |
|---|---|---|
| Not showing working in calculations | Examiners cannot award method marks if only the final answer is visible | Write every step: equation, substitution, intermediate values, final answer with unit |
| Vague language in extended responses | "It is faster" or "it is better" earns no marks without technical justification | Always say what is faster/better, why, and by how much where relevant |
| Confusing describe and explain | Describing says what happens; explaining says what happens and why | Check the command word before you start writing |
| Ignoring the marks available | A 1-mark question needs one point; writing a paragraph wastes time | Match the length and depth of your answer to the marks available |
| Incomplete binary/hex conversions | Forgetting to show the intermediate steps | Write place value headings and show each step of the conversion |
| Not addressing both sides in discuss/evaluate | One-sided answers cannot reach Level 3 | Plan your answer to include at least two perspectives before writing |
| Feature | Detail |
|---|---|
| Paper code | H446/01 |
| Title | Computer Systems |
| Duration | 2 hours 30 minutes |
| Total marks | 140 |
| Weighting | 40% of A-Level |
| Sections tested | 1.1-1.5 |
| Time per mark | Approximately 1 minute |
| Key strategy | First pass, second pass, final check |
Paper 1 rewards solid theoretical knowledge combined with precise exam technique. Master the calculation methods, learn the command words, and practise writing extended responses under timed conditions to maximise your marks.