Python is Not a Snake
Python Don't Eat Me
Petie the Python
Python's Pie
My Py
100

The process of fixing code...

Debug

100

A problem with your code...

Bug

100

An instruction you give to Karel...

Command

100

Makes Karel go forward one space... Write it out

DAILY TRIPLE

move();

100

A function that is called when you click run...

Start Function

200

Place ball in Karel... (Write it out)

putBall();

200

A way to repeat code...

Loops

200

Which ends a Karel command? (Write it out)

();
200

What is the purpose for indenting code?

Keep things organized.

Easier to spot errors.

Easier to read.

200

Executes a command one time if it is true.

If Statement

300

How many times do you define the start function?

One Time

300

Repeats code for a specific number of times...

For Loop

300

A way to teach Karel a new command...

Function

300

How do you start a comment? (Write it out)

//

300

Which is written correctly?

putBall()

getTennisBalls();

turnRight())

turnLeft;{

getTennisBalls();

400

Fix the errors (4) in this function... (DAILY DOUBLE)

function Main () {

      for (let i=1; i<4; i+); {

      putBall())

     }


}

function main () {

      for (let i=0; i<4; i++) {

      putBall();

     }

}

400

How many times do you call a main function?

One Time

400

A message of code that explains what is going on...

Comment

400

Repeats code as long as something is true...

While Loop

400

Write a command that has Karel make a left hand turn...

turnLeft();

500

Start with lower case then use upper case...

Camel Case

500

What do computer programs do?

Communicates and gives instructions to a computer.

500

Breaks code into smaller parts and creates new commands...

Functions

500

What is a variable?

Stores a value, the value can change, and it is an easier way to write code.

(Answer at least one)

500

If there are multiple conditions in an If/Else Statement, how it is written? 

If (.....) {

     } ________ {

     } else {

}     

 

Elif