Term
|
Definition
| A is a structure that allows repeated execution of a block of statement |
|
|
Term
|
Definition
A is the block statement that executes when the boolean expression that controls the loop is true |
|
|
Term
|
Definition
|
|
Term
|
Definition
A executes a body of statements continually as the boolean expression that controls entry into the loop continues to be true |
|
|
Term
|
Definition
| An loop executes a specific number of times is a definite loop or a counted loop |
|
|
Term
|
Definition
| An is one in whihc the final number of loops is unknown |
|
|
Term
|
Definition
| A is a variable whose value determines wether loop execution continues |
|
|
Term
|
Definition
| An is a loop that never ends |
|
|
Term
|
Definition
| An is a block with no statements in it |
|
|
Term
|
Definition
| a variable adds 1 to its value |
|
|
Term
|
Definition
| a variable reduces its value by 1 |
|
|
Term
|
Definition
| An Definite loop is a COUNTER CONTROLLED LOOP |
|
|
Term
|
Definition
| An indefinite loops is an |
|
|
Term
|
Definition
| is the process of ensuring that a value falls within a specified range |
|
|
Term
| Priming Read or Priming Input |
|
Definition
| A is the first input statement prior to a loop that will execute subseduent input statements for the same variable |
|
|
Term
|
Definition
| is the process of continually incrementing a variable to keep track of the number of occurences of some events |
|
|
Term
|
Definition
| is the process of repeatedly increasing a value by some amount to produce a total |
|
|
Term
| Add and Assign Operator (+=) |
|
Definition
| alters the value of the operand on the left by adding the operand on the right of it |
|
|
Term
| Subtract and Assign Operator (-=) |
|
Definition
| alters the value of the operand on the left by subtracting the operand on the right form it |
|
|
Term
| Multiplay and Assign Operator (*=) |
|
Definition
| alters the value of the left by mutiplying the operand on the right by it |
|
|
Term
| Divide and Assign Operator (/=) |
|
Definition
| alters the value of the left by dividing the operand on the right into it |
|
|
Term
| Remainder and Assign Operator (%=) |
|
Definition
| alters the value of the left by dividing the operand on the right into it |
|
|
Term
| Prefix or Prefix Increment Operator |
|
Definition
| , Adds 1 then evaluates a variable |
|
|
Term
| Postfix or PostFix increment Operator |
|
Definition
| , evalutates a variable then adds 1 to it |
|
|
Term
| Prefix and Postfix Decrement Operators |
|
Definition
| subtraxt 1 froma variable |
|
|
Term
|
Definition
| A is a special loop that can be used when a definite number of oop inerations is required |
|
|
Term
|
Definition
| A is one in whihc the loop controls variable is tested before the loop body executes |
|
|
Term
|
Definition
| The executes a loop body at least one time, it checks the loop control variable at the bottom of the loop after one repetion has occurred |
|
|
Term
|
Definition
| is one in which the loop control variable is tested after the loop body executes |
|
|
Term
|
Definition
| An contains entierely within another loop |
|
|
Term
|
Definition
|
|
Term
|
Definition
| A is one that preforms no actions other than looping |
|
|
Term
|
Definition
| is the technique of combining two loops into one |
|
|