GR 11 It Theory June 2022 Memo
GR 11 It Theory June 2022 Memo
INFORMATION TECHNOLOGY
MEMORANDUM
PAPER 2
JUNE 2022
MARKS: 120
Page 1 of 14
Question 1: Multiple-choice questions
1.1 C✓
1.2 C✓
1.3 C✓
1.4 B✓
1.5 A✓
1.6 C✓
1.7 B✓
(7 x 1) [7]
2.1 False
2.2 True✓
2.3 True✓
(3 x 1) [3]
Page 2 of 14
QUESTION 3: MATCHING ITEMS
3.1 H✓
3.2 K✓
3.3 O✓
3.4 D✓
3.5 J✓
3.6 G✓
3.7 B✓
(7 x 1) [7]
Page 3 of 14
SECTION B: SYSTEMS TECHNOLOGIES
QUESTION 4
4.1 Besides the function mentioned above, provide TWO more functions of
a motherboard.
4.2 The CPU is one of the most important components in the system unit
and largely determines the speed of your computer.
4.2.1 Name the FOUR steps in the machine cycle that the CPU
follows when working with data.
GHz✓ (1)
4.3 Your Android smartphone has a new software update and a message that
says you can now upgrade your OS to Android Oreo.
4.3.1 What is the process called where the EEPROM is wiped and
replaced with an updated version?
Flashing✓ (1)
4.3.2 Name TWO reasons why you would consider upgrading your
OS.
Firmware✓ (1)
Page 4 of 14
4.4 Your friend tells you that you do not have to safely remove your flash
drive before plugging it out of the USB port because it is a Plug-and-
Play device.
Provides an Interface
Manages processes and tasks
Manages memory
Manages input and output
Manages the disk/s
Any THREE of the above✓✓✓ (3)
4.6
4.6.1 Computer worm
4.6.2 Spyware
4.6.3 Rootkit
Page 5 of 14
4.7 You follow a link online, while you are busy reading up on new
technology trends, that tells you that Facebook is an example of social
engineering.
Phishing
Spoofing
Pharming
Any TWO of the above✓✓ (2)
[29]
Page 6 of 14
SECTION C: NETWORK TECHNOLOGIES
QUESTION 5
5.2.1 The first cable is used to connect the computers together. What type
of cable is this?
5.2.2 The second cable is optic fibre cable also thought of as the backbone
cable. Answer the following questions about this cable:
5.2.2.1 What does it mean when we say this type of cable is the
backbone cable?
5.2.2.2 Give TWO reasons why this type of cable is used as the
backbone cable.
Page 7 of 14
5.2.4 What topology would you recommend they install and why? (2)
Star topology✓: when one computer breaks down, access to the other
computer in the network in not interrupted. ✓
Note to marker: ACCEPT other correct answer if justified well.
5.2.5 The following devices have to be purchased. Explain briefly what each
of the devices are used for:
5.2.5.1 Switch
5.2.5.2 Router
5.5 Choose from the following networks the one you will use for the
following examples:
Page 8 of 14
5.6 Share TWO advantages of using VoIP software.
[26]
Page 9 of 14
SECTION D: E COMMUNICATION
Question 6
6.2 Briefly describe what a phablet is by referring to how the name came
about and what a phablet is.
6.3 Mention TWO types of mobile operating systems and give an example
of what type of mobile device will use these operating systems.
Harmony OS – Huawei
ANY TWO OS ✓✓
ANY TWO Examples of devices ✓✓ (4)
6.4 Your parents are concerned about the battery life of your smartphone
and that it cannot be used on the move when the battery goes flat.
Discuss TWO ways on how to improve the battery life of your
smartphone.
Page 10 of 14
6.5 After your methods on how to conserve battery life, your parents are
still not convinced. What hardware device could be used to rectify the
problem of low battery while on the move?
6.6 Mention TWO reasons why you would use an App instead of a web
browser on a mobile device?
6.8.1 The amount of data that can be transferred ✓ from point A to point B
in any given amount of time. ✓ (2)
6.8.2 How far a radio signal can travel✓. Obstacles greatly reduce
the range of a signal. ✓ (2)
[19]
Page 11 of 14
SECTION E: ICT AND SOCIETY
Question 7
• A code of conduct
• Details on how portable storage may be used
• Details of restrictions on installing any hardware or software
• Procedures to follow when users are victims of cyber-bullying
and/or cyberstalking.
• How to avoid plagiarism and breaking the law?
• Clear consequences of violating conditions spelt out in AUP.
• Better communication
• More efficient administration
• Census and statistics
• Elections
• Weather services and prediction
7.3 List TWO other factors that can limit the use of ICT in a country.
[8]
Page 12 of 14
SECTION F: SOLUTION DEVELOPMENT
Question 8
8.1 You are given the following extract of code from a Delphi application
that has some errors in it. Answer the following questions about this
piece of programming:
iCountJ := 0;
iCountS := 0;
iAgeJ := 0 ;
iAgeS := 0;
while NOT(EOF(tNames)) do //NOT( )
begin
Readln(tNames, sLine);
iPosComma := pos(',', sLine);
sName := copy(sLine,1,iPosComma-1); //-1
delete(sLine, 1, iPosComma);
iAge := StrToInt(sLine);
if (iAge >= 16) then
begin
redSenior.Lines.Add(sName + ' (' +
IntToStr(iAge)+ ')');//.add
inc(iCountS);
iAgeS := iAgeS + iAge ;
end // no semicolon
else
begin
redJunior.Lines.Add(sName + ' (' +
IntToStr(iAge) + ')');
inc(iCountJ);
iAgeJ := iAgeJ + iAge ;
end;
end;
CloseFile(tNames);
8.1.1 There are THREE errors in the code above. Correct all six
errors by rewriting only the lines of code that contain errors.
Page 13 of 14
8.2
8.2.1 Write another (different) statement in full for carrying out the
same as the above code.
8.2.2 As what data type will the variable, cSymbol be 'recognized and
why would you select this data type for cSymbol.
Char✓ -
Only a single character is used ✓
OR
Ordinal data type used in case. (2)
8.3
8.3.1 Write a for-loop that will execute the following instruction 5
times to create the 5 stars (*****) as one string:
Star := Star + '*';
For K := 1 ✓ to 5 do ✓
Begin
Star := Star + ‘*’; ✓
End; (3)
Page 14 of 14