1998CXC
1998CXC
State the correct technical term for EACH of the transmissions methods
above.
(c) (i) Name the type of network that would be suitable for linking all the
computers in a building.
2. When a program makes a read request to the disk drive, the component which
reads data from the disk is moved along a radius to the particular concentric circle
on which the data are stored. When the relevant part of the concentric circle of
the disk arrives under the component, which reads the data, the data are read and
stored in a special area of memory from which they could be accessed.
State the proper technical term for each of the FOUR underlined phrases in the
passage above.
3. Match the following applications with the most appropriate input device.
APPLICATION DEVICES
Point-of-sale Optical mark reader
Games Keyboard
Architectural design MICR
Multiple-choice examination Microphone
Publishing Pads and tablets
Cheque processing Bar code reader
Language processing Joystick
Preparing letters Scanner
i) Law enforcement
ii) Medicine
iii) Entertainment
8. a) Write a structured algorithm to read in TWO numbers and print the higher
value.
Suggested Response
Suggested Response
(a) C A
A B
B C
1998 CXC Past Papers 3 Of 4
9. a) Copy and complete the trace table below for the following algorithm.
X=5
K = 10 X k SUM
Sum = 45 5 10
While Sum < 75 do 55
Sum = Sum + K 20
5
Print K
K = K+ X
End while
Print Sum
c) What is printed by the algorithm?
Suggested Response
(a) X K SUM
5 10 45
5 15 55
5 20 70
5 25 90
10. Write a structured algorithm to read the names and scores of fifteen students in a
class. The algorithm must print the name of the student and his/her grade which is
determined according to the grading scale below. The algorithm must also
calculate and print the average score of the class.
GRADING SCALE
SCORE GRADE
80 or More A
65 or more but less than 80 B
50 or more but less than 65 C
Less than 50 F
Suggested Response
BEGIN
totalScore := 0;
FOR j := 1 TO 15 DO
average = totalScore / 15
Print “Class average is “, average
END.