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

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;

5 Cards in this Set

  • Front
  • Back
Boolean value
One of two values: true or false.
if...else statement
A dual-alternative decision structure which specifies what to do when a certain condition is true and also what to do if that condition is false.
Logic operators
The && and || operators used to join two or more Boolean expressions to make a compound condition.
Nested if statements
The act of placing one if statement inside either the true or false path of another if statement.
switch statement
A Java decision structure used to test a single variable against a series of exact integer or character values.