Explain how the operating system performs job/process scheduling/management
State one advantage and one disadvantage for customers of using the Internet for shopping.
Advantages
Disadvantages
List four input devices used to capture data by way of scanning
Optical Mark Recognition; Optical Character Recognition; Magnetic Ink Character Recognition ; Optical Bar Recognition
Giving answers as readers is also acceptable, that is, Optical Character Readers, Magnetic Ink Character Readers; Optical Mark Readers
State Advantages of online booking
COMPUTER STUDIES 2016 PAPER 1
b) an architectural drawing where precision is required (1mk)
(c ) producing document output for a visually impaired person (1mk)
State the types of storage devices used in a computer
Primary Storage (Memory):
Secondary Storage (Mass Storage):
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
state two advantages of using a pseudocode during program design
State advantages of batch processing
Name one item used in the home, other than a computer, that contains a microprocessor.
Explain why a developer, who is good at both low-level and high-level programming, would normally use high-level languages when writing programs [4 marks]
What is a computer system ?
A computer system refers to computer components that collectively function as a single unit to achieve the desired goal. It can also be defined as a collection of hardware, software, and liveware that work together to receive, process, and manage data
What is a referential integrity constraint?
Describe how a FRID works.
RFID stands for radio frequency identification. There is an RFID reader and tag.RFID is used in contactless credit and debit cards as well as in some hotel room cards. Inside an RFID tag is a chip that contains a small amount of memory. The chip is attached to a coil of wire which acts as an antenna. When an RFID tag is scanned, the reader emits radio waves which are picked up by the tag’s antenna. The power induced in the tag’s antenna from these waves is enough to power the chip which then uses its antenna to emit its own radio wave, which contains the information held on the chip. This wave is picked up by the reader which decodes the information and returns the information to a computer.
Differentiate between modulation and demodulation as used in data communication
Modulation refers to the process of converting a digital signal to analog signal at the transmission end while demodulation is to converting analog signal to digital signal at the receiving end
With the aid of an example, explain the term multilevel list as used in word processing
1. Chapter 1
1.1. Introduction
1.1.1.Definition of terms
At which stage of the system development life cycle does the changeover to a new system take place?
Differentiate between object code and source code
List two areas where infrared waves are used in data communication.
TV remote, wireless mouse , wireless keyboard, used by robots to gauge distance and avoid obstacles,
b) Give one benefit of each type of data transmission
Serial