Which programming construct allows a program to make a decision?
Which keyword starts a loop in Python?
What is the output?
x = 5
y = 3
print(x + y)
Which symbol is used to compare two values in Python?
What is debugging?
What is the denary value of
Which hexadecimal digit represents decimal 15?
How many bits are in one byte?
Which binary number represents decimal 7?
Why do computers use binary?
Which CPU component performs calculations?
Which memory is volatile?
Which device is both an input and output device?
What does ROM mainly store?
Which storage device has no moving parts?
A school network is usually a:
Which device directs data between networks?
Which cyber attack attempts to trick users into revealing passwords?
What is the purpose of encryption?
Which law requires organisations to protect personal information?
Explain the difference between RAM and ROM.
Convert
State two advantages of using an SSD instead of an HDD.
Explain why strong passwords should not be reused across multiple websites.
Describe the difference between a LAN and a WAN.
Trace the program below. What is printed?
score = 7
if score >= 5:
print("Pass")
else:
print("Fail")
print(score + 3)
The following program should ask for a student's name and print a welcome message.
Name = input("Enter your name")
if Name = "":
print("No name entered")
else
print("Welcome", Name)
Identify and correct three errors.