Font size
WorksheetsY7 Review 2020-2021
Total questions: 84
Worksheet time: 43mins
In binary which of these digits is the same as 'on'
0
1
2
3
Which of the following is the binary for 2?
1
11
10
100
which of these is the binary for 18
11000
10010
10101
10001
The M in RAM stands for:
Multiply
Machine
Melons
Memory
The G in GUI stands for:
Graphics
Goats
Grids
Girls
Which of the following are input devices? You may tick more than one answer.
Keyboard
Display Screen
Headphones
Microphone
Mouse
Which of the following are outputs? you may tick more than one answer.
Camera
Printer
Mouse
Display Screen
Speakers
Which of the following would you use to change the turtles direction in edublocks?
Which of the following would you use to change the turtles pen colour in edublocks?
Which of the following would you use to change the turtles shape colour in edublocks?
Which of the following would you use to initialise the turtle in edublocks?
Which of the following blocks would you use to make a program loop forever?
Which of the following allows the programmer to define a set of instructions to the computer?
Which of the following would use the colour red in RGB format?
0, 0, 0
255,0,255
255, 255, 255
255, 0, 0
Which of the following would use the colour blue in RGB format?
0, 0, 0
0, 0, 255
255, 255, 255
255, 0, 0
Which of the following would use the colour black in RGB format?
0, 0, 0
0, 0, 255
255, 255, 255
255, 0, 0
What shape will the following code draw?
triangle
square
hexagon
decagon
How many bits are the in 1 byte?
1
2
4
8
16
How many bits make a nibble?
1
2
4
8
16
How many bits is 3 bytes?
8
16
24
48
An algorithm is:
a list
a set of step by step instructions
a calculation
a set of dance moves
In computing, decomposition is:
breaking down a process into its stages
chewing your food properly
letting something decay
a set of step by step instructions
When decomposing a problem you should identify the (a) and actions.
The earliest known computing device is believed to be...
Collossus
analytic engine
Antikythera
step reckoner
The Antikythera was invented by the ...
Greeks
Romans
English
Americans
The Antikythera was invetented ...
1948
1834
1645
around 100 BC
The Antikythera was used to...
add and subtract numbers
add, subtract, multiply and divide numbers
find the position of the sun, moon and planets
control weaving
The first mechanical calculating machine was the ...
Collossus
analytic engine
Antikythera
step reckoner
P_______'s Wheel was invented by ...
Blaise Pascal
Alan Turing
Tommy Flowers
Donald Trump
The step reckoner improved on Pascal's Wheel by...
being able to add and subtract numbers
being able to add, subtract, multiply and divide numbers
finding the position of the sun, moon and planets
controling weaving
Who is considered to be the first computer programmer?
Tommy Flowers
Gottfried Liebnitz
Ada Lovelace
Joseph-marie jacquard
What was used to decode enemy messages in World War 2?
Pascal's Wheel
Collossus
Jacquards Punchcards
Babbage's analytic engine
Why did Ada Lovelace never get to try her programs?
Babbage never finished building his analytic engine
She ran out of money
Someone stole them
Babbage programmed the machine himself
Which of these typrs of processors was used from 1946 to 1955
microprocessor
transistors
vaccum tubes
integrated circuits
Which of these typrs of processors was used from 1953 until 1963
microprocessor
transistors
vaccum tubes
integrated circuits
Which of these typrs of processors was used from 1964 to 1970
microprocessor
transistors
vaccum tubes
integrated circuits
Which of these typrs of processors was used from 1971 to 1991
microprocessor
transistors
vaccum tubes
integrated circuits
Which of these changes lead to people being able to build computers smaller than an entire room?
vaccum tubes to transistors
transistors to integrated circuits
integrated circuits to microprocessors
micro-processors to multi-core processors
What does the word 'variable' mean?
box
changeable
movable
random
What does a 'syntax' error message tell you might be wrong with your code?
I have typed something wrong or missed something out (e.g. commas, brackets, capital letters)
I have too much or not enough space at the stat of the line.
I have given a variable name incorrectly
I have tried to use the wrong type of data
What does a 'type' error message tell you might be wrong with your code?
I have typed something wrong or missed something out (e.g. commas, brackets, capital letters)
I have too much or not enough space at the stat of the line.
I have given a variable name incorrectly
I have tried to use the wrong type of data
What does a 'name' error message tell you might be wrong with your code?
I have typed something wrong or missed something out (e.g. commas, brackets, capital letters)
I have too much or not enough space at the stat of the line.
I have given a variable name incorrectly
I have tried to use the wrong type of data
What does a 'indentation' error message tell you might be wrong with your code?
I have typed something wrong or missed something out (e.g. commas, brackets, capital letters)
I have too much or not enough space at the stat of the line.
I have given a variable name incorrectly
I have tried to use the wrong type of data
Look at this problem:
Write a program that asks the user to input their age, height and weight.
Your program should calculate the user's body mass index.
Age is one variable we would need to use. Tick all the options below that we would need as variables for this program
shape
height
weight
first name
body mass index.
Look at this problem:
Write a program that asks the user to input the base and height of a triangle.
Your program should calculate the triangle's area.
Tick all the options below that we would need as variables for this program
triangle
height
shape
base
area
True or False?
Computers are intelligent.
True
False
True or False?
Computers work through a program one line of code at a time
True
False
True or False?
Computers use + just for adding numbers
True
False
True or False?
Computers use + for adding numbers or for joining text strings together
True
False
True or False?
Computers use + for adding numbers or for joining text strings together
True
False
True or False?
Computers use x for multiplying numbers
True
False
True or False?
Computers use * for multiplying numbers
True
False
Look at the following code
firstname=input("Enter your firstname)
This will give a syntax error because:
there is a missing bracket
ther is a missing speech mark
it wont, it will work fine
the variable name is wrong
the command 'input' has been typed wrong
Look at the following code
firstname=Input("Enter your firstname")
This will give a syntax error because:
there is a missing bracket
ther is a missing speech mark
it wont, it will work fine
the variable name is wrong
the command 'input' has been typed wrong
Look at the following code
firstname=Input("Enter your firstname")
print fistname
This will give a name error because:
there is a missing bracket
there is a missing speech mark
it wont, it will work fine
the variable name is wrong
the command 'input' has been typed wrong
Look at the following code
firstname=Input("Enter your firstname")
This will give a syntax error because:
there is a missing bracket
ther is a missing speech mark
it wont, it will work fine
the variable name is wrong
the command 'input' has been typed wrong
Look at the following code
firstname=Input("Enter your firstname")
print fistname
This will give a name error because:
there is a missing bracket
there is a missing speech mark
it wont, it will work fine
the variable name is wrong
the command 'input' has been typed wrong
Look at the following code
length=(int(input("Enter a number")
print ("Your number was: ") + length
This will give a syntax error because:
there is a missing bracket
you can't join (concatenate) a string (str) and integer (int)
it wont, it will work fine
the variable name is wrong
the command 'input' has been typed wrong
A web browser retrieves a webpage using its web address. A compass logo is _________________.
Mozilla Firefox
Safari
Opera
Google Chrome
__________________ is a sequence of numbers that uniquely identifies the location of each computer or device connected to the Internet.
web address
computer address
IP address
network address
What is World Wide Web (www)?
Software that find website and webpages.
Collection of computers and devices connected together via communication devices and transmission media.
A portal that offers a variety of Internet services.
Consists of a worldwide collection of electronic documents.
Google, Yahoo!, Bing and MSN are the examples of
Search Tools
Search Topic
Search Engine
Search Address
_________________ is a real-time internet communication services that enables users to speak to other users via the Internet connection.
Instant Messaging
VoIP
FTP
