OCR A Level Spec H446

OCR A Level Computer Science Revision (H446)

OCR A Level Computer Science (H446) is a rigorous two-year course combining hardware and software theory, algorithm design and a substantial programming project. The specification is assessed through two written papers and a coursework component where students design and build their own software solution. This page provides free revision resources, interactive coding tools and tutoring support aligned to every area of the OCR H446 specification.

What the OCR A Level Computer Science exam covers

Component 01 — Computer Systems

2 hr 30 min
140 marks
  • Processor characteristics — ALU, control unit, registers, instruction sets, pipelining
  • Input, output and storage devices — comparison, use cases
  • Software and software development — OS types, development methodologies, testing
  • Exchanging data — compression (lossy/lossless), encryption, data exchange protocols
  • Data types and structures — stacks, queues, linked lists, trees, graphs, hash tables
  • Legal, moral, cultural and ethical issues — data protection, cybercrime, AI ethics

Component 02 — Algorithms and Programming

2 hr 30 min
140 marks
  • Computational thinking — abstraction, decomposition, pattern recognition, algorithm design
  • Problem solving — Big O notation, tractable vs intractable problems, heuristics
  • Programming — recursion, OOP, functional, event-driven and declarative paradigms
  • Sorting algorithms — bubble, insertion, merge, quick sort with complexity analysis
  • Searching and graph algorithms — Dijkstra, A*, BFS, DFS, binary search
  • Algorithms to understand — Kruskal, Prim, Kahn topological sort, dynamic programming

Component 03 — Programming Project

Coursework
70 marks
  • Student chooses their own project from an OCR-issued brief or theme
  • Deliverables: analysis, design, technical solution, testing, evaluation
  • Any programming language — Python, Java and C# are most common
  • Marked by teacher, externally moderated by OCR
  • No skeleton code — students design from scratch

Free interactive revision tools

All tools are completely free — no account required. They work alongside your classroom teaching and are designed around the OCR A Level specification.

Sample OCR A Level Computer Science questions

These questions are in the style of OCR A Level exam questions. Use the hint to check your approach, then visit the Question Bank for hundreds more with mark schemes.

1

Explain the difference between lossy and lossless compression. State one situation where each would be appropriate.

Component 01 — Exchanging Data [4 marks]

Hint: Lossless: no data is removed; original file is perfectly reconstructed [1]. Appropriate for: text files, program code, databases [1]. Lossy: data is permanently removed; smaller file, cannot be reversed [1]. Appropriate for: JPEG images, MP3 audio, streaming video where perfect quality is not critical [1].

2

Describe how Dijkstra's algorithm finds the shortest path in a weighted graph.

Component 02 — Graph Algorithms [5 marks]

Hint: Set distance to start = 0, all others = infinity [1]. Add start to priority queue [1]. Dequeue node with smallest distance, mark visited [1]. For each unvisited neighbour, calculate alt distance = dist[current] + weight [1]. If alt < current dist[neighbour], update and re-queue [1].

3

Write a recursive Python function to perform a binary search on a sorted list. Include a base case.

Component 02 — Recursion [5 marks]

Hint: Base case: low > high → return -1 (not found) [1]. Calculate mid = (low + high) // 2 [1]. If arr[mid] == target, return mid [1]. If target < arr[mid], recurse on left half [1]. If target > arr[mid], recurse on right half [1].

4

Explain what is meant by a "tractable" problem in computational theory and give one example of an intractable problem.

Component 02 — Problem Solving [3 marks]

Hint: Tractable: can be solved in polynomial time O(n^k) [1]; is practically solvable for large inputs [1]. Intractable example: Travelling Salesman Problem (TSP) — no known polynomial solution; only heuristic/approximate solutions exist for large n [1].

5

Describe two advantages of using an object-oriented programming (OOP) approach compared to procedural programming for a large software project.

Component 02 — Programming Paradigms [4 marks]

Hint: Encapsulation: data and methods are bundled; hides implementation details; reduces errors from unintended access [1+1]. Reusability: classes can be inherited and extended; reduces code duplication; speeds up development [1+1].

Want hundreds more practice questions?

The Question Bank has exam-style questions with worked mark schemes — all free.

Open Question Bank →
🎓

Need one-to-one help with OCR A Level Computer Science?

Gareth is an experienced Computer Science teacher and tutor specialising in OCR A Level and A Level. Sessions cover the topics you find most difficult — from understanding the FDE cycle to debugging your NEA code. Lessons are online via video call with a shared digital workspace.

Frequently asked questions — OCR A Level Computer Science

What is the OCR A Level Computer Science programming project?

OCR H446 Component 03 is a programming project worth 70 marks, counted as 20% of the A Level. Unlike AQA's skeleton code, OCR students choose their own project from a provided theme or brief. Students produce a documented software solution covering analysis, design, development, testing and evaluation.

How long are the OCR A Level Computer Science written papers?

Both Component 01 (Computer Systems) and Component 02 (Algorithms and Programming) are 2 hours 30 minutes and worth 140 marks each. Together they account for 80% of the A Level. The programming project (Component 03) accounts for the remaining 20%.

What topics are unique to OCR H446 compared to AQA 7517?

Both specifications cover broadly similar ground, but OCR H446 includes more emphasis on: legal and ethical aspects of computing, hardware and software development lifecycle models, detailed coverage of communication methods (circuit vs packet switching), and the OCR specification explicitly covers declarative programming (Prolog-style) in addition to functional programming.

How is the OCR A Level programming project marked?

Component 03 is marked by your teacher using the OCR mark scheme and moderated externally. The 70 marks are distributed across: analysis (7 marks), design (12 marks), technical solution (30 marks), testing and evaluation (16 marks), and documentation (5 marks).

What algorithms are assessed in OCR A Level Component 02?

OCR Component 02 assesses: graph traversal (depth-first, breadth-first, Dijkstra), sorting (bubble, insertion, merge, quick), searching (linear, binary), tree traversal (pre-order, in-order, post-order), dynamic programming, Big O complexity analysis, and computational thinking skills including heuristic approaches.

Is recursion in the OCR A Level Computer Science specification?

Yes. Recursion is explicitly assessed in OCR H446 Component 01 and Component 02. You need to understand recursive algorithms, be able to trace recursive calls using a call stack, write recursive functions, and understand base cases and recursive cases. Stack overflow from missing base cases is a common exam question.

Related pages