Cambridge International AS & A Level: Computer Science 9618/13
Cambridge International AS & A Level: Computer Science 9618/13
com
Published
This mark scheme is published as an aid to teachers and candidates, to indicate the requirements of the
examination. It shows the basis on which Examiners were instructed to award marks. It does not indicate the
details of the discussions that took place at an Examiners’ meeting before marking began, which would have
considered the acceptability of alternative answers.
Mark schemes should be read in conjunction with the question paper and the Principal Examiner Report for
Teachers.
Cambridge International will not enter into discussions about these mark schemes.
Cambridge International is publishing the mark schemes for the October/November 2024 series for most
Cambridge IGCSE, Cambridge International A and AS Level components, and some Cambridge O Level
components.
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
descriptions 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.
Marks awarded are always whole marks (not half marks, or other fractions).
• 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.
Rules must be applied consistently, e.g. in situations where candidates have not followed
instructions or in the application of generic level descriptors.
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.
Output is only 1 if one input is 1 and the other is 0 // Output is only 1 if both
inputs are different // Output is only 0 if both inputs are the same
1(c) 1 mark for NOT gate, 2 correct AND gates and the NAND gate 2
1 mark for OR gate and the final AND gate
e.g.
• DRAM requires constant refreshing, but SRAM does not need to be
constantly refreshed
• DRAM generally has greater capacities per chip, but SRAM generally has
lower capacities per chip
• DRAM has slower access times than SRAM
• The computer and the hard disk drive transmit and receive at different
speeds // The computer transfers data faster than the HDD can receive
• The buffer is used for temporary storage
• … so that the computer can transfer data to the buffer at the higher speed
• ... and is not held up waiting for data to transfer
• … and so that data is transferred to hard disk drive from the buffer at the
slower rate
• SELECT SUM(Quantity)
• FROM SALE WHERE and one correct condition
• AND with remainder correct conditions
e.g.
SELECT SUM(Quantity)
FROM SALE
WHERE CustomerID = "0034E"
AND Date >= #01/01/2023# AND Date <= #31/12/2023#;
• Create table BATCH with opening and closing brackets, all statements
within brackets
• BatchID, Type and Flavour as varchar or equivalent
• …with suitable constraint(s)
• Size as decimal, SellingPrice as currency, EndDate as date (or
equivalent)
• Primary key identified as BatchID
e.g.
CREATE TABLE BATCH(
BatchID VARCHAR(6) NOT NULL,
Type VARCHAR (20) NOT NULL,
Flavour VARCHAR (20) NOT NULL,
Size FLOAT,
SellingPrice CURRENCY,
EndDate DATE,
PRIMARY KEY(BatchID)
);
e.g.
• Ice cream table with an appropriate name
• … containing type, flavour, size, selling price
• … with suitable primary key
• … foreign key identified in BATCH that links to the primary key in
ICECREAM
Entity:
• A real-life object that is represented as a table
Attribute:
• An item of data about an entity
e.g.
• The professional ethical body has ethical guidelines to follow
• … so clients/other staff know the standards being applied
• … so the computer programmer does not have to decide what is ethical
it's written down
• Clients/staff know the computer programmer is reputable
• … there may be a test/requirement for entry
• … giving recognition of the computer programmer's skills/knowledge
• The professional ethical body provides help and support
• … for example, if the computer programmer needs legal advice
• The professional ethical body runs training courses
• … to keep the computer programmer's skills up to date
e.g.
• ASCII
• 7/8 bits per character // represents 128/256 characters // represents all
characters from Latin alphabet
• UNICODE
• 8/16/32 bits per character // represents 256/65536+ characters //
represents all characters in all languages
256 // 28
e.g.
• The change may not be noticeable // Data removed is usually not noticed
by the human eye
• … for example, changes in shade/detail
• It produces a larger decrease in file size compared to lossless // Lossy
decreases file size considerably
6(c)(ii) 1 mark for each correct point and 1 mark for matching expansion 2
e.g.
• Decrease sample rate
• … fewer samples/readings/measurements stored per second // fewer bits
per second stored
LDD 50
1 ADD #4 158
ADD 54
LDI 53
2 DEC ACC 99
ADD 56
LDM #55
3 50
SUB #5
8(b) 1 mark for each bullet point for the method (max 2) 3
e.g.
• A logical shift moves all bits to the right and inserts zeros in the
appropriate leftmost bits
• An arithmetic shift moves all bits to the right but copies the sign bit into
the Most Significant Bit (MSB)
9(b) 1 mark for correct media 1 mark for matching description e.g. 4
• Fibre optic
• Transmits data as pulses of light
9(d)(i) 1 mark for public IP address and 1 mark for private IP address: 2
Public IP address:
• So that the router is visible to the Internet/external network/WAN
Private IP address:
• So that the router is identified to computers within the LAN