Edexcel IGCSE · 考試技巧

Computer Science 考試技巧

Master the Pearson Edexcel International GCSE (9-1) Computer Science exam with this examiner-backed guide. Learn how to avoid common pitfalls in binary shifts, network comparisons, flowchart design, and practical programming questions to secure top marks.

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

試卷概覽

卷數
2
總分
160
考試時間
5小時
題型
3
試卷時間分數題數比重題型
Paper 1: Principles of Computer Science2小時80
Paper 2: Application of Computational Thinking3小時80
評級
987654321U
計算機規定

A scientific or graphical calculator is permitted. Graphical calculators must be in exam mode with all stored programs and data cleared before the exam; the calculator must not be able to retrieve stored text or formulae.

  • AO1: Demonstrate knowledge and understanding of the key concepts and principles of computer science. (37.5%)
  • AO2: Apply knowledge, understanding and skills to solve problems, design systems and write/refine algorithms. (47.5%)
  • AO3: Analyze and evaluate computer science systems, make judgements and present reasoned conclusions. (15%)

根據歷屆試題與評分準則整理(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 clear stored programs/data (graphical calculators in exam mode) and show the required working — unsupported calculator answers score no method marks.

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 clear stored programs/data (graphical calculators in exam mode) and show the required working — unsupported calculator answers score no method marks.

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 clear stored programs/data (graphical calculators in exam mode) and show the required working — unsupported calculator answers score no method marks.

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 clear stored programs/data (graphical calculators in exam mode) and show the required working — unsupported calculator answers score no method marks.

常見錯誤

  1. 1high涉及分數: 2Networks

    Stating both poles of a relative parameter as two distinct differences in network questions (e.g. 'WAN has higher latency' and 'LAN has lower latency').

    如何避免: Compare two completely different characteristics (e.g. latency for one mark, and geographical coverage or ownership for the second mark).
  2. 2medium涉及分數: 1Binary

    Failing to retain the sign bit when implementing arithmetic right shifts, or incorrectly padding the left side.

    如何避免: In Two's Complement representation, when executing an arithmetic right shift, always copy the most significant bit (the sign bit) into the newly vacated bit positions on the left.
  3. 3high涉及分數: 1Algorithms

    Omitting direction indicators/arrows on the lines connecting process blocks in flowchart diagrams.

    如何避免: Ensure every line connecting shapes in a flowchart has a clearly visible arrowhead to explicitly demonstrate the sequence flow of the algorithm.
  4. 4medium涉及分數: 2Data types and structures

    Hardcoding array offsets (e.g., substituting index 10 directly for structural replacements) instead of dynamically checking boundaries.

    如何避免: Use dynamic boundary boundaries, such as len(array) or array.Length, and programmatically locate terminal empty elements using loops rather than fixed indices.
  5. 5medium涉及分數: 1Input/output

    Failing to close open file handles at the end of output text file streams.

    如何避免: Always invoke the .Close() method (e.g. writer.Close() in C# or file.close() in Python) to release OS file locks and secure data writing.
  6. 6medium涉及分數: 3Data storage and compression

    Describing optical storage mechanics (lasers, lands, and pits) when asked to describe how data is read from magnetic platters.

    如何避免: For magnetic storage, detail how platters spin, read/write heads detect changes in magnetic polarity, and how polarities translate to binary 1s and 0s.
  7. 7high涉及分數: 2Algorithms

    Updating all columns simultaneously on every row of the trace table, rather than only changing values on a new row when states alter.

    如何避免: Only record a value in a trace table on a new line when that specific variable's state has changed. Leave other cells in that row blank until they are modified.

將技巧化為佳績

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

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

免费开始练习