NEW
Font size
WorksheetsCoding Definitions
Total questions: 18
Worksheet time: 11mins
What word goes with this definition, to write code, or to write instructions for a computer.
Command
Code
Event
Algorithm
What word goes with this definition, an action that causes something to happen.
Event
Code
Program
Loop
What word goes with this definition, an algorithm that has been coded into something that can be run by a machine.
Function
Code
Event
Program
What word goes with this definition, a list of steps to finish a task.
Loop
Algorithm
Code
Program
What word goes with this definition, part of a program that does not work correctly.
Bug
Debugging
Sequencing
Programing
What word goes with this definition, finding and fixing problems in an algorithm or program.
Bug
Debugging
Sequencing
Programing
What word goes with this definition, putting commands in correct order so computers can read the commands.
Bug
Debugging
Sequencing
Programing
What word goes with this definition, the art of creating a program.
Bug
Debugging
Sequencing
Programing
What word goes with this definition, the action of doing something over and over again.
Loop
Repeat
Command
Conditionals
What word goes with this definition, to do something again.
Loop
Repeat
Command
Conditionals
What word goes with this definition, an instruction for the computer. Many commands put together make up algorithms and computer programs.
Loop
Repeat
Command
Conditionals
What word goes with this definition, statements that only run under certain conditions.
Loop
Repeat
Command
Conditionals
What word goes with this definition, a statement that a program checks to see if it is true or false. If true, an action is taken. Otherwise, the action is ignored.
Condition
While loop
Until
Function
What word goes with this definition, a loop that continues to repeat while a condition is true.
Condition
While loop
Until
Function
What word goes with this definition, a command that tells you to do something only up to the point that something becomes true.
Condition
While loops
Until
Function
What word goes with this definition, a named group of programming instructions. Functions are reusable abstractions that reduce the complexity of writing and maintaining programs.
Condition
While loop
Until
Function
What word goes with this definition, function declarations are what create a function. In a function declaration, you fill in the function with code and you give the function a name. You must declare a function before you can use it.
The Declaration
The Call
Loop
Function
What word goes with this definition, function calls are what makes the program run the code in the function. To call a function, you place the name of the function in your program. Make sure your function is properly defined before calling it in your program.
The Declaration
The Call
Repeat
Program
