Cambridge IAS-Level · 考試技巧

Computer Science (9618) 考試技巧

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.

閱讀時間 4 分鐘更新於: 2026年6月21日

試卷概覽

卷數
2
總分
150
考試時間
3小時 30分鐘
題型
6
試卷時間分數題數比重題型
AS Level Theory Fundamentals1小時 30分鐘7550%Recall / Short Answer, Logic & Circuit Design, SQL Query & Definition, Trace & Explanation
AS Level Fundamental Problem-solving2小時7550%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.

常見錯誤

  1. 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.
  2. 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.
  3. 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.
  4. 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.
  5. 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.
  6. 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.
  7. 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.

將技巧化為佳績

thinka 把你的弱項轉化為針對性練習,即時批改並提供應試回饋。聰明地溫習,事半功倍。

练习真实试题,AI 即时批改,马上指出错在哪。

免费开始练习