Data values in a program are held in
Variables
This loop will is used to repeat a series of commands a fixed number of times
Repeat loop
This expression is a key part of an "if" statement and is used to make a decision?
A logical expression
This positions tracks the vertical (up/down) position of a sprite
Data type that is meant to hold a text like "Lets Go's"
String
This loop will run until some condition is true
Repeat Until loop
These two possible answers to a question asked in an "if" statement
True or False
You click this to make a Variable
"Make A Variable"
What is the difference between typed and untyped programming languages?
A typed language requires a data type for every variable. An untyped language does not require a data type.
This loop will run as long as the script is active
Forever loop
This operator can be used in an if statement and it stands for "less than"
<
This block is used to "Set" a value to a variable you created
"set to "block
Data type that meant to hold only whole numbers like 12
Integer
Looping logic allows you to write very powerful programs with only a few lines of code
True or False
True
Operators for less than, greater than, and equal to
<,>,=
If you create a script using the "Repeat 45" command, how many times will the blocks inside the loop be run?
45
An example of a Character
Any Single Symbol between quotation marks.
"H", "4","@"
The "Join" operator is used to combine "WHAT" together to make useful output.
DATA
Values
You add this to an "if" statement that will run a separate set of commands when the initial decision skips the first block of code
An else block
size = 0
How many times will the loop run?
Repeat until size > 10
10