Font size
WorksheetsEnd of year 8 quiz topic 2
Total questions: 39
Worksheet time: 19mins
Which is a type of Magnetic storage
CD
Hard drive
Flash drive
Which of the following typically have the highest storage space?
Hard-drive
Flash Drive (USB)
SD Card
CD
Which of these is RAM?
Which of these is a Hard Disk Drive (HDD)?
Which of these is primary storage?
Which type of storage uses a laser?
Magnetic
Optical
Solid State
Which of the following shows the capacity of OPTICAL STORAGE MEDIA in the correct order (smallest to largest)?
DVD > BLU RAY > CD
CD > DVD > BLU RAY
BLU RAY > DVD > CD
DVD > CD > BLU RAY
Rank the units of data storage in order from smallest to largest..
MB > KB > Byte > TB >GB
KB > Byte > MB > TB > GB
Byte > KB > MB > GB > TB
TB > GB > MB > KB > Byte
Which of the following units could be used to measure storage capacity of a USB stick?
Mhz
Ghz
Gb
Cm
What is the name of the environment in Python that you write your programs and then test them out?
Shell
Window
CLI
What does the term 'debug' mean?
Identify errors and allows them to be fixed
Making a calculation
A set of instructions
Looking at code
What colour is the error message on python?
Black
Blue
Green
Red
The value of a variable can change
True
False
Print ("What would you like from the menu?")
What is wrong with the above code
You do not need speech marks
You do not need brackets
Print should be in all lower case
There is nothing wrong with it
print("Hello world!")
print(3+4)
print("3+4")
print("Hello world!" * 2)
name = 'Dave'
print (name)
A small piece of information that remembers information which may change is called a?
String
Constant
Integer
Variable
Savings = 2000
interest = 0.15
combined = savings*interest
print (combined)
what would the output be?
combined
30
3000
300
