The process of breaking a large problem into smaller, more manageable pieces
Back
Call Function
Front
To to tell a program to run a function. for example calling the moveForward( ) function in your code tells the program to perform the actions defined in that function
Back
compositon
Front
The process of combining small parts of a program to solve a large problem
Back
Function
Front
Allows you to name a set of commands, which you can then run any time you want
Back
Algorithm
Front
A step-by-step procedure for solving a problem, especially by a computer.
Back
Bug/Debugging
Front
An error in coding that prevents an application from running as expected
Back
Coding
Front
The act of composing commands, code structures, and algorithms to create a computer program
Back
Command
Front
Code that tells an application to perform a specific action
Back
Loop
Front
A block of code that's repeated a certain number of times or until a condition is met
Back
if statement
Front
A code structure used to run code based on the value of one or more conditions. the first block of code if statement is the if block. An if statement may also contain other blocks that provide additional checks such as an else block and else if block
Back
logical operators
Front
A symbol such as &&, ||, or !, that modifies or combines the Boolean logic values true and false