• 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/6

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;

6 Cards in this Set

  • Front
  • Back

while statement

repeats while a controlling boolean expression remains true




contains an action that ultimately causes the controlling expression to become false




may be executed 0 more times



do while statement

similar to while loop




do while is executed at least once

infinite loops

if the controlling boolean expression never becomes false, a while loop or a do while loop will repeat without ending

for statemet

executes the body of a loop a fixed number of times




possible to declare variables within a for statement



break statement

used to end loop




dont use!

tracing variables

watching the variables change while the program is running