• 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
All programs can be written in terms of three types of control structures; ___, ___, and ___.
sequence, selection, repetition
The ___ statement is used to execute one action when a condition is true and another when that condition is false.
if...else
Repeating a set of instructions a specific number of times is called ___ repetition.
counter-controlled
When it's not known in advance how many times a set of statements will be repeated, a(n) ___ value can be used to terminate the repetition.
sentinel, signal, flag, or dummy
The ___ structure is built into Java; by default, statements execute in the order they appear.
sequence
Instance variables of types char, byte, short, int, long, float, and double are all given the value ___ by default.
0
Java is a(n) ___ language; it requires all variables to have a type.
strongly typed
If the increment operator is ___ to a variable, first the variable is incremented by 1, then it's new value is used in the expression.
prefixed