a step by step set of instructions for the computer
Back
Conditional
Front
A statement that is either true or false depending on the situation
Back
program
Front
an algorithm used by a computer to complete a task
Back
variable
Front
A factor that can change in an experiment
Back
Bug
Front
An error in a program.
Back
Selection
Front
A generic term for a type of programming statement (usually an if-statement) that uses a Boolean condition to determine, or select, whether or not to run a certain block of statements.
Back
code
Front
any command or commands written in a way that a computer can understand
Back
Pattern matching
Front
the problem of finding one pattern within a larger string
Back
event
Front
An action that causes something to happen.
Back
Loop
Front
The action of doing something over and over again.
Back
Until loop
Front
definition: type of loop to execute a block of code as long as its condition is false. When the condition becomes true, the code after the end of the loop will be executed.
Back
sequencing
Front
Putting commands in correct order so computers can read the commands.
Back
Else
Front
Another way of saying "Otherwise"
Back
cap
Front
head,chief,leader
Back
Blockly
Front
a programming language that uses blocks as commands
Back
Iteration
Front
one execution of a loop
Back
If statement
Front
The common programming structure that implements "conditional statements".
Back
While loop
Front
A control flow statement that allows code to be executed repeatedly.
Back
Debugging
Front
Finding and fixing problems in your algorithm or program.
Back
Boolean
Front
A single value of either TRUE or FALSE
Back
abstraction
Front
Pulling out specific differences to make one solution work for multiple problems.