1.8k views
2 votes
In an If-Then-Else statement, the Else clause marks the beginning of the statements to be executed when the Boolean expression is ________.

User IshRoid
by
8.0k points

1 Answer

4 votes

Answer:

False

Step-by-step explanation:

The definition for the If-Then-Else structure is as follows:

IF (boolean_condition)

THEN (commands_for_true)

ELSE (commands_for_false)

When there is an ELSE sentence, its commands are to be executed whenever previous conditions where not evaluated as true .

User Abder KRIMA
by
8.8k points