• 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

Modulus

An operator that works on integers and yields the remainder when one number is divided by another. In Java it is denoted with a percent sign%

Conditional

A block of statements that may or may not be executed depending on some condition

Chaining

A way of joining several conditional statements in sequence.

Nesting

Putting a conditional statement inside one or both branches of another conditional statement

Typecast

An operator that converts from one type to another. In java it appears as a type name in parentheses, like (int)

Recursion

The process of invoking the same method you are currently executing

Base case

A condition that causes a recursive method not to make a recursive call