Loop definition
A repeated action
Variable
A number container
move(3)
Moved 3 steps
(The question after this one is worth double)
The spinning sensor
Yaw
The language computers use
Binary
Until Loop
Conditionals
An if statement
x = 3
move(3 + x)
moved 6 steps
luminosity
the light sensor
(The question after this one is worth double)
What is Python named after?
Monty Python's flying circus.
Nested Loop
A loop in a loop.
Comment
A way to leave notes in the code
(The question after this one is worth double)
X = 3
if X == 3:
print('bonk')
else:
print('crazy')
bonk
Accelerometer
The sensor that tells how fast its going
LED stands for?
Light Emitting Diode
Repeat Defintion
Do it again
Function
An action that can be called back at any time.
>>> Var = 3
>>> var = var * 3
>>> print(Var)
>>> 3
A chunk of code that you can call over and over again
A function
What was the first computer bug?
A real moth
(The question after this one is worth double)
For loop
A loop that repeats a variable amount of times
(The question after this one is worth double)
Elif
An else if statement.
X = 3
Y = X * X - 3
print('Y')
Y
Variables are containers for anything with a _____
Label
The first name for the Java language
Oak