Past Paperr
Past Paperr
* 1 2 6 0 4 7 3 9 2 9 *
1 hour 30 minutes
INSTRUCTIONS
● Answer all questions.
● Use a black or dark blue pen.
● Write your name, centre number and candidate number in the boxes at the top of the page.
● Write your answer to each question in the space provided.
● Do not use an erasable pen or correction fluid.
● Do not write on any bar codes.
● You may use an HB pencil for any diagrams, graphs or rough working.
● Calculators must not be used in this paper.
INFORMATION
● The total mark for this paper is 75.
● The number of marks for each question or part question is shown in brackets [ ].
● No marks will be awarded for using brand names of software packages or hardware.
DC (DE/SG) 329372/2
© UCLES 2024 [Turn over
2
1 (a) Tick (✓) one box to identify the correct logic statement for this truth table.
A B C X
0 0 0 1
0 0 1 0
0 1 0 0
0 1 1 0
1 0 0 0
1 0 1 0
1 1 0 1
1 1 1 0
(A XOR B) NOR C
(A OR B OR C) NOR C
B X
[2]
2 A video doorbell is attached to the front door of a house. The doorbell uses a motion sensor to
detect when a visitor walks in front of the door. When the motion sensor is activated:
The doorbell also has a button that can be pressed. When the button is pressed, a message is
transmitted to a smartphone to play the doorbell sound.
The videos are stored on the doorbell’s internal secondary storage device and overwritten when
the secondary storage device is full.
...................................................................................................................................................
Specific microprocessor is used for specific task processing
2 ................................................................................................................................................
...................................................................................................................................................
[2]
(b) State whether the video doorbell is a monitoring system or a control system.
Justify your choice.
Monitoring system
Monitoring or control system ....................................................................................................
Justification ...............................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
[2]
(c) The video doorbell has both primary memory and secondary storage.
(i) Identify two items of data that the video doorbell will store in primary memory.
Start up instruction
1 ........................................................................................................................................
...........................................................................................................................................
Instruction being executed
2 ........................................................................................................................................
...........................................................................................................................................
[2]
(ii) The video doorbell has a solid state (flash) secondary storage device.
Complete the table by writing the answer or answers to each statement about the
principal operation of solid state (flash) memory.
Statement Answer
NAND
the two types of logic gate that 1 .................................................................................
can be used to create solid state NOR
devices 2 .................................................................................
[4]
...........................................................................................................................................
...........................................................................................................................................
..................................................................................................................................... [2]
(d) The digital camera has a microphone which is used to record the sound for the video.
The user changes the sampling rate that the microphone uses from 44.1 kHz to 88.2 kHz.
Describe how this change in sampling rate will affect the performance of the video doorbell.
Data transmission will take longer time as more data needs to be processed
...................................................................................................................................................
...................................................................................................................................................
Secondary storage will fill faster
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
............................................................................................................................................. [3]
(e) The video doorbell allows both real-time and on-demand bit streaming.
..................................................................................................................................... [1]
(ii) Give two differences between real-time and on-demand bit streaming.
We can rewing and replay in on bit tstream
1 ........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
Real time plays continous
2 ........................................................................................................................................
On demand cant play continous if all the video data is not downloaded
...........................................................................................................................................
...........................................................................................................................................
[2]
(a) The developer uses an interpreter while writing the program code because it is easier for
debugging.
Explain one reason why it is easier to debug the program code using an interpreter instead of
a compiler.
It interpretes line by line so when error occurs it stops interpreting so real time correction can be done
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
............................................................................................................................................. [2]
Explain the reasons why the need to create an executable file makes the complier the
appropriate choice when the program is complete.
...................................................................................................................................................
Program can be distributed without a source code so it cant be edited
...................................................................................................................................................
...................................................................................................................................................
No need of translator
...................................................................................................................................................
...................................................................................................................................................
............................................................................................................................................. [3]
BLANK PAGE
4 The following table shows part of the instruction set for a processor. The processor has two
registers: the Accumulator (ACC) and an Index Register (IX).
Instruction
Explanation
Opcode Operand
LDM #n Immediate addressing. Load the number n to ACC
Direct addressing. Load the contents of the location at the given
LDD <address>
address to ACC
Indirect addressing. The address to be used is at the given address.
LDI <address>
Load the contents of this second address to ACC
Indexed addressing. Form the address from <address> + the contents
LDX <address> of the Index Register. Copy the contents of this calculated address to
ACC
LDR #n Immediate addressing. Load the number n to IX
ADD #n/Bn/&n Add the number n to the ACC
ADD <address> Add the contents of the given address to the ACC
SUB #n/Bn/&n Subtract the number n from the ACC
SUB <address> Subtract the contents of the given address from the ACC
INC <register> Add 1 to the contents of the register (ACC or IX)
<address> can be an absolute or a symbolic address
# denotes a denary number, e.g. #123
B denotes a binary number, e.g. B01001010
& denotes a hexadecimal number, e.g. &4A
Address Data
19 24
20 2
21 1
22 3
23 5
24 4
25 22
ACC 12
IX 1
Complete the table by writing the content of the ACC after each program has run.
LDD 20 4
1
ADD #2
5
2 LDX 22
LDI 25
3 INC ACC 1
SUB 22
LDD 19
4 LDM #5 25
LDM #25
[4]
Instruction
Explanation
Opcode Operand
AND #n/Bn/&n Bitwise AND operation of the contents of ACC with the operand
Bitwise AND operation of the contents of ACC with the contents of
AND <address>
<address>
XOR #n/Bn/&n Bitwise XOR operation of the contents of ACC with the operand
Bitwise XOR operation of the contents of ACC with the contents of
XOR <address>
<address>
OR #n/Bn/&n Bitwise OR operation of the contents of ACC with the operand
Bitwise OR operation of the contents of ACC with the contents of
OR <address>
<address>
<address> can be an absolute or a symbolic address
# denotes a denary number, e.g. #123
B denotes a binary number, e.g. B01001010
& denotes a hexadecimal number, e.g. &4A
Address Data
30 01110101
31 11111111
32 00000000
33 11001100
34 10101010
1 0 0 1 1 0 1 0
0 0 0 1 1 1 1 0
Complete the table by writing the content of the ACC after each program has run.
The binary number 10011010 is reloaded into the ACC before each program is run.
AND 31 10011010
1
1 1 0 1 0 1 01
2 XOR B01001111
3 OR #30 1 1 1 1 1 1 1 1
[3]
© UCLES 2024 9618/11/M/J/24
11
5 A bank allows customers to access their accounts using an application that they can download
onto a device such as a smartphone.
(a) The system that allows customers to access their accounts using the application is a
client-server model.
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
............................................................................................................................................. [4]
(b) The bank wants to protect the integrity of its data while transferring the data to other banks.
Parity check is one example of data verification.
Complete the description of parity check when Computer A is transmitting data to Computer B.
ODD OR EVEN
Computer A and Computer B agree on whether to use ......................................................
7 BIT
parity. Computer A divides the data into groups of ...................................................... . The
ODD
number of 1s in each group is counted. If the agreed parity is ................................................
and the group has an even number of 1s, a parity bit of 1 is appended, otherwise a parity bit
of 0 is appended.
BLOCK
In a parity ...................................................... check the bytes are grouped together, for
example in a grid. The number of 1s in each column (bit position) is counted. A bit is assigned
to each column to make the column match the parity. These parity bits are transmitted with
BYTE
the data as a parity ...................................................... .
[5]
(c) The bank also needs to keep its customers’ data private and secure.
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
..................................................................................................................................... [3]
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
..................................................................................................................................... [4]
6 A company is developing a website that will allow users to create an account and then play a quiz
every day. The data about the users and the quizzes are stored in a database.
A user must select a unique username and enter a valid email address to create an account. All
users must be over the age of 16. A new quiz is given to the users every day. Each quiz is stored
in its own text file.
The database stores the filename of each quiz and the date it can be played. The user gets a
score for each quiz they complete, which is stored in the database. The scores are used to give
each user a rating, for example Gold.
(a) Create a 3-table design for this database normalised to Third Normal Form (3NF).
...................................................................................................................................................
USER USERID USERNAME EMAIL AGE
...................................................................................................................................................
QUIZ QUIZNAME USERID DATE
...................................................................................................................................................
SCORE USERID RATING SCORE
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
............................................................................................................................................. [6]
(b) The company is using a Database Management System (DBMS) to set up the database.
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
...................................................................................................................................................
[4]
© UCLES 2024 9618/11/M/J/24 [Turn over
14
(c) The company has another database, FARMING, for a different game.
The database FARMING has a table named EVENT which is shown with some sample data.
(i) The database FARMING has a second table created named PLAYER that has the primary
key PlayerID.
The field PlayerID in EVENT needs to be set up as a foreign key to link to PlayerID in
PLAYER.
Write a Structured Query Language (SQL) script to change the table definition for EVENT
to link the foreign key to PLAYER.
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
..................................................................................................................................... [2]
(ii) Write an SQL script to return the number of events that each player has completed.
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
..................................................................................................................................... [3]
10011110
01100001
+00011001
[3]
Tick (✓) one or more boxes in each row to identify the topology, or topologies, each statement
describes.
[5]
(b) The LAN will connect to the internet through a router. The router has a public IPv6 address.
...........................................................................................................................................
..................................................................................................................................... [1]
(ii) One difference between an IPv4 and IPv6 address is that the numbers in an IPv4 address
are separated by full stops and in an IPv6 address they are separated by colons.
1 ........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
2 ........................................................................................................................................
...........................................................................................................................................
...........................................................................................................................................
[2]
Permission to reproduce items where third-party owned material protected by copyright is included has been sought and cleared where possible. Every
reasonable effort has been made by the publisher (UCLES) to trace copyright holders, but if any items requiring clearance have unwittingly been included, the
publisher will be pleased to make amends at the earliest possible opportunity.
To avoid the issue of disclosure of answer-related information to candidates, all copyright acknowledgements are reproduced online in the Cambridge
Assessment International Education Copyright Acknowledgements Booklet. This is produced for each series of examinations and is freely available to download
at www.cambridgeinternational.org after the live examination series.
Cambridge Assessment International Education is part of Cambridge Assessment. Cambridge Assessment is the brand name of the University of Cambridge
Local Examinations Syndicate (UCLES), which is a department of the University of Cambridge.