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

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;

7 Cards in this Set

  • Front
  • Back
Typically, ___ statements are used for counter-controlled repetition and ___ statements for sentinel-controlled repetition.
for, while
The ___ statement selects among multiple actions based on the possible values of an integer variable or expression, or a String.
switch
The ___ statement, when executed in a repetition statement, skips the remaining statements in the loop body and proceeds to the next iteration of the loop.
continue
The ___ operator can be used to ensure that two conditions are BOTH true before choosing a certain path of execution.
&& (conditional and)
If the loop-continuation in a for header is initially ___, the program does not execute the for statement's body.
false
Methods that perform common tasks and do not require objects are called ___ methods.
static
The do...while statement tests the loop-continuation condition ___ executingthe loop's body; therefore, the body always executes at least once.
after