WorksheetsYear 7 - Revision Recap
Total questions: 55
Worksheet time: 35mins
choose the sprite.
What happens when we click this?
Nothing happens
The scene stops
We can change the sprite
The scene starts
You can change the backdrop in Scratch.
true
false
To add more sprite (character) which button should you click?
Which icon should you click to change Scratch backdrop
What is the name of this part of Sratch?
Sprites
Backdrop
Costume
Blocks
What is the name of this in Scratch?
Costumes
Code
Script
Backdrop
What colour blocks is used to make Sprite move (motion)?
Blue
Green
Yellow
Red
What colour blocks allow the code to start move (event)?
Blue
Green
Yellow
Red
What happen to sprite if you use this block?
Sprite will jump
Sprite will move 10 steps
Sprite will change colour
Sprite will say hello
A completed program in scratch.
Scratch
volume
project
Where your project is displayed when active.
speech bubble
stage
tempo
Displays the location of your X and Y positions.
stage
coordinates
volume
What does the ( Green Flag ) mean in Scratch?
Nothing
STOP
Start
Finish
Can we add sound to our scratch project ?
Yes
No
What is a character or object is called in Scratch?
Spirit
Sprint
Sprite
Split
What do you call the list of commands in Scratch?
Sprite
Script
Scratch
Help
How do you duplicate a character in Scratch?
press Ctrl+Del on the keyboard
press Ctrl+Backspace on the keyboard
click on the Scissors
click on the Stamp
Which group of blocks include the When Flag Clicked command?
Motion
Looks
Sound
Control
is integer a number
true
false
chose which is a floating point
14
15.5
choose a string
"tim"
"tim
'tim'
"tim
tim
in python does i t matter if we right "and" this together and 'and' together
true
false
where is python used
web aplications
data science
mobile apps
GUI applications
print("3+4")
Guess the output:
a = 255
b = 255
print(a == b)
True
False
Which of the following is a command to have a message appear on the screen?
write
msg
input
Pick the Python command used to make the user type in some data (input the data)
get
input
int
float
Which of the following Python command can be used for WHOLE numbers?
input
int
float
Which of the following is a Python command to work with DECIMAL numbers?
input
int
float
What would be printed by the command
print('12-5')
12-5
'12-5'
7
'7'
print(Hello world!)
What is the result of the following operation?
print(1 + 4*3)
11
12
13
15
What is the correct file extension for Python files?
.py
.pt
.pyt
.pyth
What will be the output of this code?
x = “2”
y = “4”
z = int(x) + int(y)
print(z)
6
6.0
both are correct
Below is the code for printing student's name. What is the best answer to put in (?)
name = student
print ( ? )
text
name
student
What will be the output when a user enters WILLIAM
name = input("Enter your name: ")
print("Hello, " + name)
Hello name
Hello William
Helloname
Hello WILLIAM
