Exam Verdict & Key Dynamics

The October/November 2025 examination series for Cambridge International AS & A Level Computer Science (9618) presents a highly balanced but conceptually demanding pair of papers. While Paper 1 (Theory Fundamentals) remains relatively predictable, adhering strictly to core database design (SQL), processor architecture, and network basics, Paper 2 (Problem-solving & Programming Skills) demands exceptional rigor. Students are required to translate complex logic into flawless pseudocode, handle composite record types, and maintain a stack pointer accurately.

Where the Marks are Won or Lost

A massive chunk of marks resides in Paper 2's algorithmic design and implementation. Many students struggled with the 8-mark LoanStatus() and 7-mark LoansPerTutor() exercises. The common failure points were:

  • Omitting local variable declarations, which cost easy marks in procedures.
  • Failing to terminate search loops early once a record is found (e.g., matching both student and book IDs).
  • Incorrect dot notation when referencing record elements within global arrays, such as Loan[Index].OnLoan.

In Paper 1, the 5-mark database query requiring an INNER JOIN or an equivalent multi-table selection was a major differentiator, alongside the bitwise manipulations and Assembly trace tables.

Mathematical Precision & Pitfalls

The video file size estimation calculation in Paper 1, Question 7(b), required converting a raw frame count, resolution, and color depth into gigabytes. The formula: \( \text{File Size} = \frac{4000 \times 3000 \times 30 \times 16 \text{ bits}}{8 \times 1000 \times 1000 \times 1000} = 0.72 \text{ GB} \) caught several candidates off-guard due to division errors or failing to convert bits to bytes first.

Strategic Revision & Predictions

For the upcoming series, expect Floating-Point Representation to make a strong comeback, as it was completely omitted in this set. Additionally, practice abstract data structures (such as queues and linked lists) since only stacks were represented here. Master text file input/output syntax, including casting booleans or integers to strings before writing, to secure top-tier marks.