An expert-level exam tips and analysis guide for Cambridge International AS Level Computer Science (9618). This guide breaks down the strategic pacing of Paper 1 (Theory Fundamentals) and Paper 2 (Fundamental Problem-solving and Programming Skills), highlights the most common syntax and logical traps found in examiner reports, and provides an actionable study plan for earning top-tier marks.
Theoretical Application, Trace & Verification, Algorithm & Design (Structure Chart/Diagrams), Pseudocode Program Construction
評価段階
ABCDEU
電卓の規定
A silent scientific calculator is required where the syllabus permits one. It must NOT be graphical, programmable, or capable of symbolic algebra (CAS), and it must contain no stored programs or notes.
AO1: Knowledge and understanding of computer science principles. (35%)
AO2: Apply knowledge, understanding and skills to show conceptual or practical understanding. (35%)
AO3: Design, write, implement, and document algorithm solutions. (30%)
過去問と採点基準にもとづいて作成(2023–2025)。
電卓プログラム
Table mode for roots & turning points
Scientific calculator (e.g. Casio fx-991 series)
目的: Tabulate \(y\) across a range of \(x\) to locate sign changes (roots) and approximate maxima/minima.
使う場面: Solving or sketching a function when you want to find where its graph crosses or turns.
手順
Enter the function in TABLE mode, set the start, end and step, then read where the sign of \(y\) changes or where it peaks.
試験での注意: Allowed, but the calculator must be silent, non-graphical, non-programmable and free of stored content; always show the working the mark scheme requires.
Statistics mode (mean, SD & regression)
Scientific calculator (e.g. Casio fx-991 series)
目的: Read the mean \(\bar{x}\) and standard deviation directly, and the gradient/intercept (and \(r\)) of a linear regression for bivariate data.
使う場面: Any data-handling, statistics, or required-practical analysis question.
手順
Enter the data in STAT mode (1-VAR or A+BX), then recall \(\bar{x}\), \(\sigma\) or the regression coefficients.
試験での注意: Allowed, but the calculator must be silent, non-graphical, non-programmable and free of stored content; always show the working the mark scheme requires.
Carry exact values with Ans & memory
Scientific calculator (e.g. Casio fx-991 series)
目的: Keep full-precision intermediate values to avoid rounding errors.
使う場面: Multi-step calculations where premature rounding loses the final accuracy mark.
手順
Use Ans, STO/RCL or the M+ memory to reuse the unrounded result of each step; round only the final answer.
試験での注意: Allowed, but the calculator must be silent, non-graphical, non-programmable and free of stored content; always show the working the mark scheme requires.
Equation solver — to CHECK your working
Scientific calculator (e.g. Casio fx-991 series)
目的: Use the built-in EQN/SOLVE mode to verify roots of quadratics or simultaneous equations you have already solved by algebra.
使う場面: As a check only, after solving by hand.
手順
Enter the coefficients in EQN mode (or use SOLVE) and confirm they match your worked solution.
試験での注意: Allowed, but the calculator must be silent, non-graphical, non-programmable and free of stored content; always show the working the mark scheme requires.
よくあるミス
1high影響する配点: 2Information representation
Using bit-depth calculations directly as bytes in graphic resolution calculations, resulting in a size off by a factor of 8.
回避方法: Always divide the bit-depth by 8 first to yield bytes before multiplying by the total resolution to calculate image storage sizes.
2high影響する配点: 1Programming
Omitting quotation marks when specifying literal filenames inside sequential text file pseudocode commands like OPENFILE.
回避方法: Ensure all literal filenames are surrounded by quotation marks, for example: OPENFILE "Stock.txt" FOR READ.
3medium影響する配点: 2Algorithm Design and Problem-solving
Substituting output commands (OUTPUT) inside a standard pseudocode function instead of using the RETURN statement.
回避方法: Check the module specification: if it is a FUNCTION, it must use RETURN to send the output value back to the calling process.
4medium影響する配点: 1Databases
Declaring primary identifiers that have leading zeros (like CustomerID '0123') as integer types in SQL CREATE TABLE.
回避方法: Use CHAR or VARCHAR string types for codes or identifiers that require structural leading zeros to preserve the exact digit length.
5high影響する配点: 3Programming
Failing to write required loop index or boolean structure end indicators such as ENDIF or ENDWHILE in programming blocks.
回避方法: Always close every selection and iteration block explicitly to maintain pseudocode structural integrity and preserve structural marks.
6medium影響する配点: 1Data Types and Structures
Confusing index 0 and index 1 bounds when setting up loops to search or process standard declared arrays.
回避方法: Carefully check the array bounds declaration in the scenario (e.g. ARRAY[1:200]). Start your loop index counter from 1 instead of 0 if defined as such.
7medium影響する配点: 2Programming
Failing to convert boolean or integer fields to strings using NUM_TO_STR() before writing them into sequential text files.
回避方法: Explicitly wrap non-string variables in the NUM_TO_STR() conversion function when concatenating or writing to sequential text files.