Grade 9 ICT
Grade 9 ICT
GRADE 9
Name: _________________________________ Date: ____________
(Write your complete name)
Section A
1. Multiple choice: Choose the correct option and write the letter in the blank.[20]
______1. Computer systems B. Monitors
consist of two main parts: C. Input Device
A. Ram & Rom D. Storage Device
B. Hardware & software ______5. Printers are example for
C. Data & Information A. Software
D. Operating system &Web B. Storage Device
browser C. Input Device
______2. Devices used to get data D. Output Device
from the outside world into the ______6. Special software can be
computer are called. used to recognize the individual
A. Input devices. letters in a scanned piece of text,
B. Output Devices and this is called
C. Storage Devices A. OMR
D. None of the above B. OCR
______3. Input Device used in C. Scanner
voice recognition software. D. Printer
A. Speaker ______7. Fast permanent memory
B. Keyboard A. ROM
C. Microphone B. RAM
D. Joystick C. USB drive
______4. Quantities such as D. CD ROM
temperature and pressure can be ______8. Fast Temporary memory
detected and measured using. A. RAM
A. Sensors B. ROM
2
C. USB Drive B. Local Area Network
D. CD ROM C. Computer Network
______9. Brain of the computer D. Small Network
A. Monitor ______15. The most convenient way
B. CPU of communicating without cables.
C. Input devices. A. Bluetooth
D. Output devices. B. Wi-Fi
______10. Input device used for C. Modem
kiosks D. Local Area Network
A. Touch screen ______16. _________________
B. Joystick gives the location of the device.
C. OCR A. Internet Protocol
D. OMR B. Media Access Control
______11. Modem means C. Wide Area Network
A. Module Demodulate D. Local Area Network
B. Modern Technology ______17. ________ uniquely
C. Modulator Demodulator identifies a device on a network.
D. Demodulator Modulator A. Internet Protocol
______12. A network is B. Media Access Device
A. Two or more computers C. Local Area Network
connected to communicate D. Wide Area Network
and share resources. ______18. Data that is transmitted
B. a stand-alone computer on a network is called.
C. Social media A. Airtime
D. A phone signals. B. Network data.
C. Data Packet
______13. The largest computer D. Hub
network is called. ______19. The hardware device that
A. Local Area Network has a lot of devices connected to it
B. Modem and not secure.
C. World wide web A. Switch
D. The internet B. Hub
______14. A computer network C. Bridge
covering a small area or one D. Router
building. ______20. A network device that
A. Wide Area Network connects the computers and only
© UCLES 2015 0417/11/O/N/15
3
sends the data to the appropriate B. Switch
device is called. C. Bridge
A. Hub D. Router
1. Section A: Enumeration
1. Complete the table by giving five examples for each heading. [9]
(i).
(ii).
(iii).
(a) Explain two ways sensors are used in real life situations.
1 __________________________________________________________________
2 _______________________________________________________________
(b) State two differences between RAM and ROM.
1 _________________________________________________________________
2 _______________________________________________________________
3. Touchscreens are very popular for personal devices and fixed devices in public places.
(i). ___________________________________________________________________
(ii). ________________________________________________________________
i. ___________________________________________________________________
ii. ___________________________________________________________________
iii. ___________________________________________________________________
iv.________________________________________________________________
c. Describe the benefits of touchscreen in public places such as those on ticket machine in
bus and railway stations.
______________________________________________________________________
______________________________________________________________________
______________________________________________________________________
____________________________________________________________________
There are three types of storage device.
II. _____________________________________________________________________
III. __________________________________________________________________
Advantages Disadvantages
(i).
(ii).
4. Virtual reality
_________________________________________________________________________
_________________________________________________________________________
5. Actuator
_________________________________________________________________________
_________________________________________________________________________
6. COUNT function
_________________________________________________________________________
_________________________________________________________________________
7. COUNTA function
_________________________________________________________________________
_________________________________________________________________________
8. Iterative development
_________________________________________________________________________
_________________________________________________________________________
9. Prototype
_________________________________________________________________________
_________________________________________________________________________
10. Syntax Error
_________________________________________________________________________
_________________________________________________________________________
11. Validation
_________________________________________________________________________
_________________________________________________________________________
12. Suitability
_________________________________________________________________________
_________________________________________________________________________
Programming on python
Write the following codes in python and save your work in a flash drive
Asks the user for their name and then greets them.
```python
Asks the user to input two numbers, then adds them and displays the result.
```python
Asks the user to enter the radius, then calculates and displays the area.
```python
import math
Asks the user for their current age and calculates their age in 10 years.
```python
future_age = age + 10
Asks the user to enter a temperature in Celsius, then converts and displays it in Fahrenheit
```python