Master the Pearson Edexcel GCSE (9-1) Computer Science (1CP2) exam with this examiner-backed guide. Learn time-saving strategies, expression-building techniques for Paper 1, practical Python tips to avoid automated runner failures in Paper 2, and crucial flowchart standards.
閱讀時間 5 分鐘更新於: 2026年6月21日
試卷概覽
卷數
2
總分
150
考試時間
3小時 30分鐘
題型
5
試卷
時間
分數
題數
比重
題型
Written Paper (Theoretical)
1小時 30分鐘
75
32
50%
選擇題, Short Answer & Formula Construction, Extended Response, Flowchart / Diagram Construction
Workstation Practical On-Screen Paper
2小時
75
6
50%
Code Correction (Debugging), Code Selection (Caesar Cipher), Logic and Sequence Completion, Algorithmic Translation (Flowchart to Code), Modular Subprograms & Arrays, File I/O and Record Tables
評級
987654321U
計算機規定
A scientific or graphical calculator that meets JCQ regulations may be used (some GCSE Mathematics and Science papers are non-calculator). Graphical calculators must be set to exam mode; you must clear any stored programs, notes or data before the exam, and the calculator must not be able to retrieve stored text or formulae.
AO1: Demonstrate knowledge and understanding of key concepts and principles of computer science (40%)
AO2: Apply knowledge and understanding of key concepts and principles of computer science to some contexts (40%)
AO3: Analyse, evaluate, make judgements, design, program and evaluate computer systems (20%)
根據歷屆試題與評分準則整理(2022–2024)。
計算機程式
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 under JCQ rules, but you must still show your method — an unsupported calculator answer earns no method marks. Clear all stored programs, notes and data (graphical calculators in exam mode) before the exam.
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 under JCQ rules, but you must still show your method — an unsupported calculator answer earns no method marks. Clear all stored programs, notes and data (graphical calculators in exam mode) before the exam.
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 under JCQ rules, but you must still show your method — an unsupported calculator answer earns no method marks. Clear all stored programs, notes and data (graphical calculators in exam mode) before the exam.
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 under JCQ rules, but you must still show your method — an unsupported calculator answer earns no method marks. Clear all stored programs, notes and data (graphical calculators in exam mode) before the exam.
常見錯誤
1high涉及分數: 2Algorithms
Failure to label 'Yes' and 'No' (or 'True' and 'False') branches on decision diamonds in flowcharts.
如何避免: Always write clear, legible labels on all outgoing pathways originating from every decision diamond.
2high涉及分數: 1Data types and structures
Forgetting to cast inputs to the correct numeric types (such as float or int) prior to calculations in Python.
如何避免: Wrap your input() calls with int() or float() immediately, e.g. weight = float(input("Weight: ")), to prevent runtime errors.
3medium涉及分數: 1Develop code
Hard-coding constants inside calculations rather than using the pre-declared CONSTANTS in Paper 2.
如何避免: Look at the top of the code file for pre-declared variables (in UPPERCASE) and use them directly in your equations (e.g. MIN_CHEESE, PRICE_PER_KILOGRAM).
4medium涉及分數: 2Subprograms
Referencing global lists or variables instead of the local parameter (such as pTable) inside Paper 2 subprograms.
如何避免: Ensure all operations within your functions target the variables supplied in the subprogram arguments list (e.g., pTable) to secure modularity marks.
5medium涉及分數: 1Input/output
Forgetting to strip trailing newline characters (\n) when reading lines from raw data text files.
如何避免: Use the .strip() function on lines read from files prior to splitting or printing, to avoid formatting and indexing errors.
6medium涉及分數: 1Operators
Confusing floor division (//) with modulus (%) or standard division (/) in arithmetic expressions.
如何避免: Use standard division (/) for real division, floor division (//) for integer quotients, and modulus (%) for remainders.
7medium涉及分數: 1Networks
Defining LAN and WAN differences solely by geographic scale rather than specifying infrastructure ownership.
如何避免: State clearly that LANs use self-owned network infrastructure, while WANs rely on third-party telecommunications infrastructure.