Conditional Processing Flashcards

1
Q

The process of using if and if-else type statements in a program to make a decision based on a Boolean (true/false) condition.

A

Conditional Processing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A statement in programming that makes a decision using if or if-else situations by evaluating a Boolean condition.

A

Conditional Statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

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.

A

If Statements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

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.

A

If/Else Statements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly