• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/8

Click to flip

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;

8 Cards in this Set

  • Front
  • Back
Do/while loop
A series of statements that will be executed as long as a condition is true. The condition is written on the while statement and is a posttest loop structure.
For loop
A pretest loop structure; usually used when the number of iterations is known.
Iteration
A single pass through the statements in a loop.
Loop
A control structure that provides for the repetition of statements.
Loop index
A counter variable used in a for loop.
Posttest
A loop that has its test condition after the body of the program code.
Pretest
A loop that has its test condition at the top; the statements inside the loop may never be executed; also called an entry test.
While loop
A series of statements that will be executed as long as a condition is true. The condition is written on the while statement and is a pretest loop structure.