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 Science
2小时
80
—
—
—
Paper 2: Application of Computational Thinking
3小时
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.
常见错误
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).
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.
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.
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.
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.
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.
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.