• A-Level Computer Science – OCR NEA Evaluation Explained (OCR H446) | Bonus 7
    Apr 21 2026

    🎧 A-Level Computer Science revision for OCR & AQA students. ⭐ If this podcast helps your revision, leaving a quick rating really helps other students find it.


    In this bonus episode, we focus on the OCR A-Level Computer Science NEA evaluation section. We look at what evaluation is really for, how it links back to the original aims and success criteria, and what students need to do to show that their solution has been properly tested and reviewed.


    The episode explains how to evaluate a finished project in a clear and structured way, including judging how well the solution meets user needs, identifying strengths and limitations, and reflecting honestly on possible improvements. It is designed to help students understand what a strong NEA evaluation looks like and how to approach this final section with confidence.


    Perfect for OCR H446 Computer Science students completing the NEA.

    Show More Show Less
    20 mins
  • A-Level Computer Science – Dijkstra’s, A & Travelling Salesman Explained (OCR / AQA) | S12:Ep6*
    Apr 16 2026

    This episode introduces optimization algorithms in computer science, specifically focusing on Dijkstra's shortest path algorithm and the A algorithm*. It explains how Dijkstra's algorithm finds the shortest path between a starting point and all other nodes in a weighted graph, with applications in areas like internet routing and GPS. The document then contrasts computable and incomputable problems, using the Travelling Salesman Problem (TSP) as an example of an intractable problem that is difficult to solve efficiently. Finally, it introduces heuristic methods as a practical approach for finding approximate solutions to intractable problems, and describes the A* algorithm as a path-finding algorithm that uses a heuristic function to focus on reaching a specific goal node.

    Show More Show Less
    18 mins
  • A-Level Computer Science – OCR NEA Post-Development Testing Explained (OCR H446) | Bonus 6
    Apr 14 2026

    🎧 A-Level Computer Science revision for OCR & AQA students. ⭐ If this podcast helps your revision, leaving a quick rating really helps other students find it.


    In this bonus episode, we look at post-development testing for the OCR A-Level Computer Science NEA. This is the stage where students test the finished system in a structured and meaningful way to show whether it actually works as intended.


    We cover the purpose of post-development testing, the difference between simply trying out a program and carrying out proper formal testing, and how to record evidence clearly. We also explain how test plans, expected outcomes, actual outcomes, and screenshots or other evidence can help demonstrate that the solution has been fully checked.


    This episode is especially useful for students who want to strengthen the testing section of their NEA and make sure their evidence supports the marks available in the OCR H446 coursework project.


    #ALevelComputerScience #OCRComputerScience #ComputerScienceNEA #OCRNEA #Coursework #ProgrammingProject #ALevelRevision #ComputerScienceRevision

    Show More Show Less
    18 mins
  • A-Level Computer Science – OCR NEA Iterative Testing Explained (OCR H446) | Bonus 5
    Apr 13 2026

    🎧 A-Level Computer Science revision for OCR & AQA students.

    ⭐ If this podcast helps your revision, leaving a quick rating really helps other students find it.


    In this episode, we break down Iterative Testing in the OCR A-Level Computer Science NEA (H446).


    You’ll learn:


    • What iterative testing means and why it’s important

    • How to test your solution at each stage of development

    • How to present test data, expected results, and actual outcomes

    • How to identify issues and refine your solution

    • What examiners are really looking for in testing evidence

    • Common mistakes that cost marks


    Iterative testing is essential for demonstrating that your solution works correctly and improves over time.


    🎯 If you’re working on your NEA, make sure to also listen to the Design and Iterative Development episodes to understand how testing fits into the full development process.


    Show More Show Less
    18 mins
  • A-Level Computer Science – Depth-First & Breadth-First Search Explained (OCR / AQA) | S12:Ep5
    Apr 13 2026

    This episode provides an overview of graph traversal algorithms, specifically depth-first search (DFS) and breadth-first search (BFS). It explains how to trace and describe typical applications for each algorithm, including illustrations of their operational steps using a sample graph. The text further details the data structures employed by each algorithm—a stack for DFS and a queue for BFS—and examines their complexity. Finally, it briefly discusses the application of these concepts to tree traversals, highlighting similarities and differences.

    Show More Show Less
    14 mins
  • A-Level Computer Science – Merge Sort & Quick Sort Explained (OCR / AQA) | S12:Ep4
    Apr 9 2026

    This episode provides an overview of merge sort and quick sort algorithms, crucial topics for A Level Computer Science. It begins by explaining the core steps of merge sort, including dividing a list into sublists and then merging them back into a single sorted list, illustrating this with a step-by-step example. The document then calculates the time complexity of merge sort as O(n log2n). Subsequently, it introduces quick sort as another "Divide and Conquer" algorithm, detailing its process of selecting a pivot, partitioning the list, and recursively sorting sublists, also with a visual demonstration. The text concludes by discussing the efficiency of quick sort, noting its best-case time complexity of O(n log n) and a worst-case scenario of O(n^2), particularly when the pivot selection leads to highly unbalanced partitions.

    Show More Show Less
    15 mins
  • A-Level Computer Science – Bubble Sort & Insertion Sort Explained (OCR / AQA) | S12:Ep3
    Apr 6 2026

    This repisode, provides an overview of sorting algorithms, specifically bubble sort and insertion sort. It highlights the importance of choosing an efficient sorting algorithm due to the potentially large number of items to be sorted. The document explains the mechanics of both bubble sort and insertion sort, offering pseudo-code algorithms and illustrating their processes. Crucially, it analyzes the time complexity of both algorithms, determining that both have a Big-O time complexity of O(n²), although insertion sort is generally faster in practice. The material also touches upon scenarios where simpler sorts, despite being less efficient, might be adequate for small datasets.

    Show More Show Less
    14 mins
  • A-Level Computer Science – OCR NEA Iterative Development Explained (OCR H446) | Bonus 4
    Apr 5 2026

    🎧 A-Level Computer Science revision for OCR & AQA students.

    ⭐ If this podcast helps your revision, leaving a quick rating really helps other students find it.


    n this episode, we break down the Iterative Development section of the OCR A-Level Computer Science NEA (H446).


    You’ll learn:


    • What iterative development actually means in the NEA

    • How to structure your development into clear iterations

    • How to show testing, refinement, and progression

    • What examiners are really looking for

    • Common mistakes that cost marks

    This builds directly on the Analysis & Success Criteria section, helping you move from planning into development.

    🎯 If you’re working on your NEA, make sure to also listen to the previous episode on Analysis & Success Criteria to fully understand how the sections link together.


    Show More Show Less
    23 mins