Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 17

Super Computers process instructions at high speed.

Super Computers are more accurate in data processing

Telecommunication Channels/Data Communication Media e.g. Use of


Satellite Transmission, Fiber Optic Cables. Use of NETWORK SWITCHES
and NETWORK BRIDGES

Telecommunication Channels/Data Communication Media. This is used to pass


information and allow for all devices to be connected for information sharing. Switches
and Bridges are used to link similar and dissimilar Computer networks

Space Exploration by NASA.


Military in missile tracking
Easy to set up, install and connect for use.
Programs on Desktop computers are traditionally the same everywhere
likewise the hardware attachments work the same way.

Home Banks Police Stations Hospitals


Schools Call Centre Libraries Offices
Pivot Table

=sum (E3:E7) OR =sum (B8:D8)

i. Re-Do the Pivot Table


ii. Re-Do the Formula function (i.e. sum function)

=Vlookup(A10, A3:E7,4)

Change the column number from 4 to 5. The Grand Total is in the 5th column
i. Input Devices e.g. Keyboard, Mouse, Scanner, Microphone, etc.
ii. Output Devices e.g. Printer, Speaker, Monitor, Plotter
iii. Processing Devices e.g. Central Processing Unit
iv. Storage Devices e.g. Memory Cards, Hard Drive, Cloud Based Storage

i – Input Devices e.g. Gaming Devices


i – Input Devices e.g. Source Data Automation Devices

i. Wired – Ethernet Cable (CAT5 Cable),


ii. Fiber Optic Cable
iii. Coaxial Cable, Telephone Lines,
iv. Twisted Pair Cables.

Assuming – An office building

Ethernet Cable (CAT 5 CABLE)


=$B4 *$C4

=sum (D4:D12)
MERGE AND CENTER

1. Place the cell pointer in cell A1.


2. Select Cells A1 to E1.
3. Click on the MERGE AND CENTRE ICON

1. Place the cell pointer in the cell the results should be displayed.
2. Enter the formula/function = Average (first cell : last cell)
3. Press Enter
i. Network Manager/Network Administrator
ii. Computer Technicians
iii. System Analyst

i. More effective communication with customers through emails, text messages and
use of Social Media (Facebook, Instagram, Twitter, etc.)
ii. Increases the connectivity with workers and customers using highly developed
computer network. Workers can stay home and work (telecommute). Customers can
order any time of day and get email confirmation of their order.
iii. Increase use of Mobile Applications to get customers to do business which uses less
data and provide for faster response. Mobile Apps Notifications and SMS are used to
alert customers.
Bullets and numbering features are used to list points in a document for ease of
reading

Bold,
Underline,
Italics,
Full and Left Justification,
Tabs

i. Highlight the text that is to be moved. (Paragraph 2)


ii. Left Click on the selected text.
iii. Left Click and drag the selected text to the location in
the document where it is to be placed (above paragraph
1.
iv. Release the left clicked mouse button.

i. Open the document in the software being used.


ii. Click on Review
iii. Choose Spelling and Grammar.
iv. If a word is spelt incorrectly, choose the correct word from the options provided or
you will edit and correct on screen. Click on change.+
v. If the word is spelt correctly but not known by the computer, click on Ignore.
vi. At the end of spell checking, click on Ok.
vii. Save the document.
Print

999 DO

AVERAGE

Age

ENDWHILE

COUNT

AVERAGE

END.
i. Files can lost if not backed up or files can be damaged/corrupted by
virus if there is no Antivirus software installed.
ii. Employees or other persons can access the information wrongfully
without authorisation.
iii. Files can be stolen off the computer and no trace to who accessed it.

I. Install Antivirus software e.g. Norton, MacAfee, AVAST, AVG


II. Add passwords to files or provide username and passwords to
authorised persons only.
III. Create backup copies of files on different storage areas and also use
Cloud Based Storage to backup files.
0
Loop construct is used to repeat a set of instructions once the
condition remains true.

Endwhile loop states the input that terminates loop control statement. E.g. WHILE
AGE <> 999 DO. 999 is stated.

Repeat Until loop states the input that that must be entered for
the loop control statement to end. E.g. Repeat Count + 1 Until AGE
= 999.

END While Loop continues until the condition becomes false. Repeat Loop continues
until told to stop
DiscRate1 .05
DiscRate2 .10
Print “Enter the price of the item.”
Read IPrice
Print “Enter the quantity of items purchased.”
Read Qty
TotalCost IPrice * Qty
IF TotalCost >500 THEN
Discount TotalCost * DiscRate1
ELSE
Discount TotalCost * DiscRate2
ENDIF
Print “The total cost is $”, TotalCost
Print “The discount is $”, Discount
END.
Print “Enter your exam mark.”
Read ExamMark
IF ExamMark >=70 THEN
Print “Grade A”
ELSE
IF ExamMark >=60 THEN
Print “Grade B”
ELSE
Print “GRADE NOT AVAILABLE”
ENDIF
ENDIF
END.

You might also like