the exclusive legal right to print, publish, perform, film, or record literary, artistic, or musical material, and to authorize others to do the same
Back
Debug
Front
Going through line by line to find and fix an error in the code.
Back
Program
Front
An algorithm (sequence of instructions) written in a code that a computer can understand.
Back
Event
Front
An action that causes something to happen.
Back
Until
Front
A command that tells you to do something only up to the point that something becomes true.
Back
Conditional
Front
The program does something based on another thing happening. If-then or If-then-else.
Back
Variable
Front
A label to which a value can be assigned.
A word that replaces a number in code.
(Think of it as a jar with a label on it- you can put whatever you'd like in the jar but only have to reference the label.)
Back
Algorithm
Front
A sequence of instructions for carrying out a task.
A set of commands.
Back
Function
Front
Set of instructions used to accomplish a specific task. Also known as a procedure.
Back
Sequence
Front
The order of steps in a program.
Back
command
Front
An instruction for the computer. Many commands put together make up algorithms and computer programs.
Back
Loop
Front
To perform the same task again and again.
Can be for set number of times or infinite.
Back
While Loop
Front
A loop that continues to repeat while a condition is true.