A block of instructions that are repeated for a specified number of times.
What is a simple loop?
a "container" used to store a value in a computer's memory.
What is a variable?
A named collection of items.
What is an array?
In Code Monkey, the turtle is an example of an...
What is an Object?
There are two MAIN TYPES of LOOPS: Count Controlled Loops and Conditional Loops. A simple (or times) loop is an example of a....
What is a count controlled loop?
When writing code, the programmer is allowed to DEFINE the name, but must follow a few "rules"...
What is a variable?
The first index is in an array.
What is [0]
In Code Monkey, the step is an example of an...
What is a command?
The instructions inside the loop are indented. This key on the keyboard is used to INDENT the code...
What is the TAB key?
A variable can be thought of as a __________ that holds one value at a time.
What is a container?
The code used to move the FIRST beaver in the array.
What is beaver[0]. step 10
In Code Monkey, right is an example of an...
What is a parameter?
This code could be made shorter by creating a simple (or count controlled loop)
How many times would the loop need to repeat?
What is 3?
The VALUE of d in the code below
What is distanceTo banana[0]?
The NUMBER inside the square brackets of an object in an ARRAY.
What is the INDEX?
In Code Monkey, a beaver is an example of an...
What is an object?
How many times does this code ITERATE (or repeat)?
What is 10?
Line 1 of this code is an important step in writing code...
What is initializing the variable?
Number of bbeavers are in the ARRAY of beavers?
What is 3?
In Code Monkey, the step is an example of an...
What is a command?