9210 International Gcse Computer Science Mark Scheme Paper 2 Jun22
9210 International Gcse Computer Science Mark Scheme Paper 2 Jun22
COMPUTER SCIENCE
9210
Paper 2 Concepts and principles of computer science
Mark scheme
June 2022
Version 1.0 Final
*226Y92102/MS*
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
Mark schemes are prepared by the Lead Assessment Writer and considered, together with
the relevant questions, by a panel of subject teachers. This mark scheme includes any
amendments made at the standardisation events which all associates participate in and is
the scheme which was used by them in this examination. The standardisation process
ensures that the mark scheme covers the students’ responses to questions and that every
associate understands and applies it in the same correct way. As preparation for
standardisation each associate analyses a number of students’ scripts. Alternative answers
not already covered by the mark scheme are discussed and legislated for. If, after the
standardisation process, associates encounter unusual answers which have not been raised
they are required to refer these to the Lead Examiner.
It must be stressed that a mark scheme is a working document, in many cases further
developed and expanded on the basis of students’ reactions to a particular paper.
Assumptions about future mark schemes on the basis of one year’s document should be
avoided; whilst the guiding principles of assessment remain constant, details will change,
depending on the content of a particular examination paper.
Copyright information
OxfordAQA retains the copyright on all its publications. However, registered schools/colleges for OxfordAQA are permitted to copy material
from this booklet for their own internal use, with the following important exception: OxfordAQA cannot give permission to schools/colleges to
photocopy any material that is acknowledged to a third party even for internal use within the centre.
Copyright © 2022 Oxford International AQA Examinations and its licensors. All rights reserved.
2
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
01 1 C9 1
AO2=1
01 2 256 // 28; 1
AO2=1
01 3 256 // 28; 1
AO2=1
01 4 01011000; 1
R. if answer does not use one byte
AO2=1
3
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
02 3 8 // 23; 1
AO2=1
4
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
02 4 3
Represented using bit
Image
pattern? (Yes/No) AO2=3
Yes
Yes
No
Yes
Yes
Mark as follows:
5
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
03 2 A (Binary); 1
R. more than one row ticked
A. use of alternative symbol than tick AO1=1
HLL LLL
# HLL commands are LLL commands are for
more powerful than LLL primitive operations (A.
commands // one HLL examples eg ADD,
command is equivalent STORE)
to many LLL commands
# In HLL keywords are In LLL keywords are
meaningful (A. expressed in
expressed in English) mnemonics/short codes
(NE. binary)
# HLL code always needs LLL commands directly
to be translated (before map to commands the
it can be executed) processor can execute //
commands written in
machine code can be
executed directly by the
processor (A.
“understood” or “read” for
“executed” as BOD) //
machine code commands
6
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
do not need to be
translated (to be
executed) // machine
code can be executed
more quickly (as no
translation required)
HLL provides support (Some) LLLs do not
for subroutines support subroutines
HLL has built-in data LLLs do not provide data
structures A. examples structures
eg list, array
HLL has wide range of Built-in functions and
built-in libraries not
functions/libraries provided/limited
HLL directly supports Writing code for a loop in
iteration / loops LLL more complex
HLL does not provide LLL provides direct
direct access to access to hardware
hardware NE. computer
HLL code is easier to LLL code is harder to
understand, debug, understand, debug, read
read
HLL facilitates faster LLL program development
development of is slow
programs
7
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
1 mark: The first set of lists combined are [34, 87], [2,
17] and [9, 63].
A. 30 shown again as a one-item list at this stage
1 mark: The final two sets of lists combined are [2, 17,
34, 87] and [9, 30, 63] and the final list is the correct
sorted list [2, 9, 17, 30, 34, 63, 87].
8
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
Max 1
9
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
10
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
07 1 5
Result Count Temp
AO2=5
0 0 1
1 1 4
4 2 1
Mark as follows:
11
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
<html>
<head>
<title>Leap years</title>
</head>
<body>
<p>A leap year has 29 days
in...<br /> ...February</p>
<p>Recent leap years:</p>
<ul>
<li>2020</li>
<li>2016</li>
<li>2012</li>
</ul>
</body>
</html>
Do not award mark if more than one box has been AO1=1
shaded in.
12
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
Max 1
1 mark: + C
A. if underneath a NOT bar that extends too far
Q = 𝐀 .𝐁 + 𝐂
13
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
0 0 1 1
0 1 0 1
0 1 1 1
1 0 0 1
1 0 1 1
1 1 0 1
1 1 1 1
09 5 OR; 1
A. correct drawing of an OR gate
AO1=1
14
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
15
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
10 2 Benefits (Max 3) 4
Risks (Max 3)
Max 4
16
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
12 1 Link; 1
A. Network Interface, Data Link
AO1=1
17
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
12 3 Difference (1 mark) 2
TCP UDP
TCP is connection- UDP is connectionless
oriented
TCP provides a reliable UDP does not guarantee
connection that packets will arrive (in
order) // best effort
protocol
TCP performs error UDP does not perform
recovery // packets error recovery // packets
received with errors are with errors are just
retransmitted discarded
TCP server maintains UDP is stateless
state
TCP has slower UDP has faster (effective)
(effective) transmission transmission speeds (as
speeds (because of error errors not corrected)
correction overhead)
18
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
Max 3
Max 2
19
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
Max 1
20
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
14 3 3; 1
AO2=1
15 2 StudentID; 1
A. Minor errors in spelling and case and space between
Student and ID AO2=1
21
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
15 3 3
Surname BookID Cost
Jalal 1 4.49 AO2=3
Sklair 3 8.99
1 mark: For each record listed: the fields listed are the
correct ones (Surname, BookID, Cost), with the
correct values and no other fields are displayed. Award
this mark whether or not the records are the correct
ones, so long as they have been correctly linked using
the primary and foreign keys.
Max 2 if:
• any incorrect data included in results table
• results table is incomplete
• fields are included in the results table in a different
order (eg BookID before Surname)
22
MARK SCHEME – INTERNATIONAL GCSE COMPUTER SCIENCE – 9210/2 – JUNE 2022
Tick
SQL Query
one
DELETE StudentID 27
FROM Student
DELETE "Harpreet Singh"
FROM Student
DELETE
FROM Student ✓
WHERE StudentID = 27
DELETE 27
FROM StudentID
IN Student
23