• 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
Definite loop
A loop that executes a specific number of times.
do...while loop
A Java post-test looping structure.
for loop
A pre-test loop that uses shorthand notation to combine multiple statements into one line of code.
Indefinite loop
A loop whose final number of loops is unknown at development time.
Loop control variable
A variable whose value determines whether the loop execution continues.
Nested loops
The act of placing one looping structure inside another.
Postfix operator
A unary operator that is placed after a variable that will eval.
Prefix operator
A unary operator that is placed before a variable that will add 1 to the variable and then evaluate it.