Mock 2005
Mock 2005
Mock 2005
-SECTION I – 35 marks
1. (a) On a diskette, each sector has 512 bytes of storage. There are 18 sectors in a track. Each side of
the disk has 80 rings. What is the total amount of storage space on the disk?(2 marks)
(b) With respect to information storage in a computer’s memory: Explain the difference between a
byte and a word. (2 marks)
(c) Name the hardware component of a computer that performs EACH of the following functions:
(i) Directs internal operations within the CPU
(ii) Stores programs and data that are currently being used by the CPU
(iii) Stores instructions that are used during the boot-up process (3 marks)
Total 7 marks
2. (a) Explain the difference between application software and system software. (2 marks)
(c) Explain how graphical user interface can make an operating system easier to use than a
command line interface. (2 marks)
Total 7 marks
3. A computer user has 400 typed documents on a disk, and may need to access any one of them. These
documents concern ten different things.
(b) The user can remember the date and time of making a particular file, but not the name of the file.
Explain ONE way the user can get to retrieve that file. (2 marks)
Total 3 marks
4. (a) Explain the difference between odd and parity and even parity. (2 marks)
(b) State the binary and BCD representation for 187. ( 2 marks)
(c) Using eight-bit two's complement binary numbers, compute 11-7. ( 2 marks)
Total 6 marks
5. (a) Give ONE DIFFERENCE and ONE SIMILARITY between Optical Character Recognitions and
MICR (2 marks)
(c) Give TWO ways in which a bar code can be used in an accounting system.(2 marks)
(d) Give TWO advantages of using ready-made software compared with using custom-made
software. (2 marks)
Total 7 marks
6. (a) BRIFLY explain what is Electronic Mail. (1 mark )
Total 5 marks
SECTION II – 25 marks
Answer ALL questions in this section.
(b) Teleconferencing
8. (a) Give TWO purposes for which company can use its web site. (2 marks)
Total 8 marks
8. (a) As part of a project to modernize the police force in a country, computers and related equipment have been
installed in the Intelligence Unit of the police force and all staff in the unit have been trained to use
computers. State THREE uses of the computers in the Intelligence Unit. (3 marks)
(b) State THREE different computer-related crimes and identify TWO measures that should be put in place to
prevent them. ( 5 marks)
Total 8 marks
(b) “Physical access restrictions are better than password or encryption”: Give ONE argument in
favour of the statement given. (1marks)
(c) Give TWO methods of protecting oneself from computer viruses. (2 marks)
Total 4 marks
10. List ONE typical function/responsibility of EACH of the following:
(b) Programmer
Total 2 marks
PROGRAMMING
11. Write a structured algorithm to find the sum of N integers, where the value of N is to be supplied by the
user. Each of the N integers is to be supplied by the user. (3 marks)
X Y Z
1 1 1
2
The Algorithm:
X=1
Y=1
Z=1
X=X+Y
Y=X*Y
Z=X+Y
X=X+Y
Y=X*Y
IF Z < X THEN X = Z
IF Z > X THEN Y = X
PRINT X, Y, Z