A computer laboratory experiences power supply problems. Describe three power related problems that should be addressed
Blackout: This is unexpected discontinuation of power supply in the laboratory.
Power sag: Sudden drop of voltage levels that lasts less than a second.
Transients/ surge: High voltage flowing.
Brownout: Partial blackout where there's low voltage flow.
Give four features of a Data Protection Act
Explain the following terms
(a) Disk mirroring
(b) Encryption
(c) Backup
(a) Disk mirroring- Data is written on two or more disks simultaneously.
(b) Encryption - Contents are scrambled so they cannot be understood without a decryption key
(c) Backup - A copy of the data is taken and stored in another location
State three types of optical disks
The website has a uniform resource locator (URL).
An example of a URL is given.
https://www.google.co.ke/index.html
Complete the table to identify the name of each section of the URL.
https : protocol
google.co.ke: domain name
/index.html: webpage/file name
(i) Give three advantages and disadvantages of using a touch-sensitive interface.
Advantages
Disadvantages
Give one example of wireless technology
method of transmission e.g
device e.g.
State examples of wireless transmission media
Define the following modes of electronic data processing:
Multi-tasking - It is a data processing modes where a single CPU processing more than one task or program apparently at the same time
Time-sharing - a processing mode where a single CPU processes tasks from more than one user apparently at the same time
Time-sharing - this is a processing mode in which the CPU serves two or more users with different processing requirements ( tasks)
On-line processing - is a mode of processing where the result of data processing transaction is available immediately
Real-time processing - is a mode of data processing in which the time interval required to process and respond to inputs is so small that the response itself is useful for controlling the physical activity of a process
Describe two possible causes of computer failure. In each case state how it could have been prevented
One characteristic of a robot is its mechanical structure.
State two other characteristics of a robot
Describe two effects on society of an increase in the use of the Internet for e-commerce.
Suggest one disadvantage to the programmer of using a high-level language instead of a low-level language.
Give three characteristics of an IP address.
Distinguish between an optical scanner and a magnetic ink scanner
A school has 3000 students sitting final examinations.
Each student sits eight examinations.
Write an algorithm, using pseudocode or a flowchart, which:
• inputs the marks for all 8 examinations for each student
• outputs for each student the average mark for their 8 examinations
• outputs the highest mark overall
highest = -1
for student = 1 to 3000
total = 0
for exam = 1 to 8
input mark
total = total + mark
if mark > highest then highest = mark
next
average = total/8
output average
next
output highest
Python code:
highest = -1
for student in range(1, 3001):
total = 0
for exam in range(1, 9):
mark = int(input("Enter mark: "))
total += mark
if mark > highest:
highest = mark
average = total / 8
print("Average:", average)
print("Highest mark:", highest)
VBA Code
Option Explicit
Sub CalculateAverageAndHighest()
Dim highest As Integer
Dim total As Integer
Dim mark As Integer
Dim average As Double
highest = -1
For student = 1 To 3000
total = 0
For exam = 1 To 8
mark = InputBox("Enter mark:")
total = total + mark
If mark > highest Then
highest = mark
End If
Next exam
average = total / 8
MsgBox "Average: " & average
Next student
MsgBox "Highest mark: " & highest
End Sub
What situations are likely to call for the use of Direct Changed Over?
The operators who enter the data into the files sit at keyboards to do their work.
Discuss
(i) the potential health hazards of this type of work,
(ii) the ways that management can help to overcome the effects of the health hazards.
(i) the potential health hazards of this type of work,
(ii) the ways that management can help to overcome the effects of the health hazards.
Give two other uses of hexadecimal in computer science.
Describe two benefits of using USB connections between a computer and a device.