Cambridge IGCSE: Computer Science For Examination From 2023
Cambridge IGCSE: Computer Science For Examination From 2023
Cambridge IGCSE: Computer Science For Examination From 2023
Specimen
These general marking principles must be applied by all examiners when marking candidate answers. They should be applied alongside the specific
content of the mark scheme or generic level descriptors for a question. Each question paper and mark scheme will also comply with these marking
principles.
• the specific content of the mark scheme or the generic level descriptors for the question
• the specific skills defined in the mark scheme or in the generic level descriptors for the question
• the standard of response required by a candidate as exemplified by the standardisation scripts.
GENERIC MARKING PRINCIPLE 2:
Marks awarded are always whole marks (not half marks, or other fractions).
GENERIC MARKING PRINCIPLE 3:
• marks are awarded for correct/valid answers, as defined in the mark scheme. However, credit is given for valid answers which go beyond the
scope of the syllabus and mark scheme, referring to your Team Leader as appropriate
• marks are awarded when candidates clearly demonstrate what they know and can do
• marks are not deducted for errors
• marks are not deducted for omissions
• answers should only be judged on the quality of spelling, punctuation and grammar when these features are specifically assessed by the
question as indicated by the mark scheme. The meaning, however, should be unambiguous.
GENERIC MARKING PRINCIPLE 4:
Rules must be applied consistently e.g. in situations where candidates have not followed instructions or in the application of generic level
descriptors.
GENERIC MARKING PRINCIPLE 5:
Marks should be awarded using the full range of marks defined in the mark scheme for the question (however; the use of the full mark range may
be limited according to the quality of the candidate responses seen).
Marks awarded are based solely on the requirements as defined in the mark scheme. Marks should not be awarded with grade thresholds or grade
descriptors in mind.
Note: No marks are awarded for using brand names of software packages or hardware.
An overview of a program
Function
or subroutine.
START
Count 0
INPUT
Number
IS Number Yes
= 0?
No
Correct lines:
Example:
B ← FALSE
INPUT Num
Counter ← 1
WHILE Counter <= 12 DO
IF A[Counter] = Num
THEN
B ← TRUE
ENDIF
Counter ← Counter + 1
ENDWHILE
12(b) Linear search 1
12(c) Any three from: 3
• WHILE has criteria check at start // pre-condition
• code inside WHILE may never run
• REPEAT UNTIL has criteria check at end // post-condition
• REPEAT UNTIL will always run at least once
Techniques required:
R1 Procedure that takes the hospital number as a parameter (use of procedures and parameters)
R2 Check if hospital number valid (selection, use of 1D array)
R3 Check temperature reading (selection, use of 2D array)
R4 Check pulse reading (selection, use of 2D array)
R5 Output appropriate messages for each selection (output with appropriate messages)
AO2: Apply knowledge and understanding of the principles and concepts of computer science to a given context, including the analysis
and design of computational or programming problems
0 1–3 4–6 7–9
At least one programming technique Some programming techniques used The range of programming techniques
has been used. are appropriate to the problem. used is appropriate to the problem.
Any use of selection, iteration, More than one technique seen applied All criteria stated for the scenario
counting, totalling, input and output. to the scenario, refer to the list of have been covered by the use of
techniques needed. appropriate programming techniques,
refer to the list of techniques needed.
No creditable response
Some data has been stored but not Some of the data structures chosen The data structures chosen are
appropriately. are appropriate and store some of the appropriate and store all the data
data required. required.
Any use of variables or arrays or other
language-dependent data structures, More than one data structure used The data structures used store all the
e.g. Python lists. to store data that is required by the data that is required by the scenario.
scenario.
Solution contains lines of code that Solution contains lines of code that Solution performs all the tasks given in
attempt at least one task given in the perform most tasks given in the the scenario.
scenario. scenario.