Use LEFT and RIGHT arrow keys to navigate between flashcards;
Use UP and DOWN arrow keys to flip the card;
H to show hint;
A reads text to speech;
16 Cards in this Set
- Front
- Back
Loop Body
|
Contains the statements that execute as long as the loop's controlling Boolean expression remains true
|
|
Repetition
|
Alternate name for looping
|
|
Iteration
|
Alternate name for looping
|
|
while loop
|
tests a Boolean expression and executes as long as the expression continues to be true
|
|
Loop control variable
|
A variable that determines whether a loop will continue
|
|
Infinite loop
|
Loop with no end
|
|
Definite loop
|
one for which the number of repetitions are predetermined values.
|
|
Counted loop or counter controlled loop
|
Repetitions are managed by a counter
|
|
Incrementing
|
A variable is adding a constant value to it, frequently 1
|
|
Decrementing
|
A variable is decreasing it by a constant value, frequently 1
|
|
Counter
|
Is any numeric variable you use to count the number of times an event has occurred.
|
|
Indefinite loop
|
Is one for which you cannot predetermine the number of executions
|
|
Priming input
|
Is a first input that gets a loop control variables first value before the loop begins
|
|
Nested loops
|
Occur when a loop structure exists within another loop structure
|
|
For statement of for loop
|
Can be used to code definite loops.
|
|
Forcing
|
A data item means you override incorrect data by setting it to specific value.
|