An iterative loop which is repeats the steps forever, until a condition is met. An iterative loop which is repeats the steps forever, until a condition is met. Answer:condition-controlled loop/While loop
An iterative loop which is repeats the steps a set number of times. An iterative loop which is repeats the steps a set number of times. Answer:count-controlled loop/For loop
A flow control structure which makes the computer repeat certain steps a number of times, based on the outcome of an expression. A flow control structure which makes the computer repeat certain steps a number of times, based on the outcome of an expression. Answer:Iteration/Loop/While/For
A flow control structure which makes the computer choose a path to follow, based on the outcome of an expression. A flow control structure which makes the computer choose a path to follow, based on the outcome of an expression. Answer:Selection/If statement
Pieces of data that the program can use when it runs. Pieces of data that the program can use when it runs. Answer:Values
A combination of values or variables, combined with operators or functions that the computer can calculate A combination of values or variables, combined with operators or functions that the computer can calculate e.g. - a+b, c=d, e Answer:Expressions
Named memory locations that can be used to store values or the results of expressions. Named memory locations that can be used to store values or the results of expressions. Answer:Variables