In coding, what does a sequence mean?
Explanation:
A sequence is steps in order.
Miss Kashef wants the character to move forward 5 steps then turn right. This is a ________.
Explanation:
It is a clear sequence of commands.
What does this code do: Forward 3, Turn right 90 degrees, Forward 3?
Explanation:
It draws the first two sides of a square.
Which is the correct order to make the character go around a square?
Explanation:
Forward then Turn repeated.
Miss Kashef uses the command 'repeat 4 times'. What will happen?
Explanation:
Repeat 4 times runs the block 4 times.
What does 'if touch edge, bounce' mean?
Explanation:
The sprite bounces when it touches the edge.
To move the character forward and then left at the same time is called ________.
Explanation:
Concurrent means happening at the same time.
Miss Kashef writes: move forward 10 steps, then turn 90 degrees. How many times must she repeat to make a square?
Explanation:
4 times makes a full square.
What is the bug in this code: Forward 5, Turn left, Forward 5?
Explanation:
It needs another turn to close.
Which command makes things happen at the same time?
Explanation:
Parallel or concurrent scripts run together.