Conditional Processing Flashcards
The process of using if and if-else type statements in a program to make a decision based on a Boolean (true/false) condition.
Conditional Processing
A statement in programming that makes a decision using if or if-else situations by evaluating a Boolean condition.
Conditional Statement
Statements in programming that check to see if a Boolean expression is true, and executes a “then” statement if so, otherwise does nothing. These are often called “one-way” conditional statements.
If Statements
Statements in programming that check to see if a Boolean expression is true, and executes a “then” statement if so, otherwise executes an “else” statement if the condition is false. These are often called “two-way” conditional statements.
If/Else Statements