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

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;

15 Cards in this Set

  • Front
  • Back
Statement that gives the computer the ability to make decisions.
IF
The portion of an IF statement that is executed if the IF statement is true.
Then
The portion of an IF statement that is executed if the IF statement is false.
Else
The test in an IF statement is based on a _____________
condition
_____________ are used to form conditions in IF statements
relational operators
Greater than conditional operator
>
Less than conditional operator
<
Not equal to conditional operator
<>
Equal to conditional operator
=
Greater than or equal to conditional operator
>=
Less than or equal to conditional operator
<=
American Standard Code for Information Interchange
ASCII Code
Tests more than one condition in an IF statement.
Compound condition
Compound conditions are joined with _____________
logical operators
If one condition or both conditions must be true for the condition to be true is an example of the ______ logical operator.
or