Font size
WorksheetsCodeMonkey 0-35 Review
Total questions: 14
Worksheet time: 7mins
What level did you get to in CodeMonkey last class?
What is the goal of every level in CodeMonkey?
Create an algorithm with conditionals
Get the monkey to collect all the bananas
Move the banana toward the monkey
Move the turtle
This code will not beat the level. Why?
Monkey will turn the wrong direction
Monkey is stepping too far
Monkey is not stepping far enough
"step" should be "walk"
What does the ruler do?
Measures distances
Measures angles
Provides hints
Measures distances and angles
What coding concept could I use to make this code more efficient?
Conditionals
Variables
Loops
Objects
TRUE OR FALSE: The monkey can walk on water.
TRUE
FALSE
How can I get the turtle to step forward?
step.turtle
turtle.step
Turtle Steps
turtle.walk
I want the turtle to turn toward the island and then step 22. What code belongs in the blank that will help me do that?
moveTo
face
turnToward
turnTo
Line 2 and 3 need to be in a loop that runs 9 times. How can I write a loop in line 1?
times.9 ->
9.loop ->
9.times ->
9 times >
TRUE OR FALSE: I can write more code after a loop that is not included in the loop.
TRUE
FALSE
What is a variable?
A storage unit
A list of items
A program
An algorithm
I want to use a variable x in this program. What line needs to go on line 1 to declare and initialize the variable x?
let x = 20;
var x = 20;
x = 20
int x = 20;
Who is Gordo?
The console
A character in each level
The debugger
The helper! He gives instructions and hints for every level
What's one thing you're excited about learning in the Coding unit?
How to write complicated programs
How coding is used in real life
How to solve problems with computational logic
Coding is not my favorite
