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

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;

12 Cards in this Set

  • Front
  • Back
Algorithm
A set of steps that tell how to solve a problem.
Boolean expression
An expression that evaluates to either True or False.
Counter
A variable used to store a value that is updated by a constant valuse
Decision structure
A statement that uses a condition to determine which set of statements to execute.
Lifetime
The duration in which a declared variable exists in memory.
Logical operators
Operators (And,Or, and Not) that may be used to form a Boolean expression.
Nested statements
One or more statements within a statement.
Pseudocode
An algorithm written in both English and program code.
Relational operators
Operators (=,<,<=,>,>=, and <>) that can be used to form a Boolean expression.
Roundoff error
Occurs when a floating point number cannot be exactly represented in binary notation by the computer.
Static variable
A variable with a local scope but a lifetime the duration of the program.
Update
To increment a counter variable.