Font size
WorksheetsEduBlocks NCCE Lesson 1-2
Total questions: 25
Worksheet time: 13mins
This code will not work.. There is something missing. What is it?
There is no loop block
It is missing the Import Turtle block
It is missing the Pen Down Block
There is no bgcolour block
What does this line of code do?
Move the Turtle forward 90
Move the Turtle Backwards 90
Put the Turtle at location 90 on the screen
Make the turtle size 90
What shape would this code create?
A rectangle
A triangle
An octagon
A square
What block could be used to reduce the size of this program by 6 lines but still draw the shape correctly?
An If statement
A For Loop
A variable could be added
There is no way to do this
What shape will this code produce?
Which of the blocks in the image contains the "Print" command
What type of block is shown in Blue?
A List Block
A Statement Block
A Loop Block
A Variable Block
What does the blue line of code do?
Gets the user to enter their name
Assigns the name entered to the variable "name"
Stores the variable "name" where you type
Asks you to print out a name
What effect will line 4 of this code have on the program?
Sets up the number of times the loop will run
Tells the turtle to move forward 90
Sets the turtle picture to a turtle
Tells the turtle to turn right 90 degreed
How many squares will this code draw?
4
10
90
36
What block must come before the Green "Else" block in your code to avoid an error?
Loop Block
List Block
Print Block
If Block
There are two kinds of loops that can be created with Edublocks "FOR" is one of them, what is the other one?
Until block
While Block
When Block
How Block
What effect does this block have on your code?
Puts the computer to sleep for 1 second
Pauses the program for 1 second
Exits your program in 1 second
Sends you a sleep message for one second
What does this command do in Turtle Python?
Turns the turtle into a pen shape
Lifts the pen off the "paper"
Sets the pen to the turtles position
None of these answers
Loops are a good way to repeat a sequence of code.
True
False
To compare two values we use a double equals == symbol.
True
False
What does r represent in this code? (Think about how you measure a circle)
What is the name of this variable, and what data type does it contain?
I want to print a string. Which print block to use: A or B?
A
B
What will be printed?
0,1,2,3,4
1,2,3,4,5
i,i,i,i,i
What will be printed?
Hello World Once
Endless Hello World
Error
An algorithm is:
a list
a set of step by step instructions
a calculation
a set of dance moves
What do we call a sequence of code that repeats itself?
Iteration
Selection
Sequence
Algorithm
What do we call the the programming concept that uses logical tests to change the flow of the sequence?
Iteration
Selection
Sequence
Algorithm
The order that a program executes code is called....
Sequence
Iteration
Selection
Algorithm
