• 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
Condition
An expression involing relation operators (such as < and = ) that is either true or false.
ANSI Values
Determine the order used to compare strings with the rlational operators
Logical Operators
(2 < n) And (n < 5) -- "And, or, Not" -- almost like keywords
Boolean data type
Any variable or expression that evaluates to either True or False
Truth Values
Either true or false of a condition
If Blocks
Allows a program to decide on a course of action based on whether certain conditions are true or false.
ElseIf Clauses
An extension of the IF block allows for more than two possible alternatives with the inclusion of ElseIf clauses.