93.0k views
2 votes
Which sentence describes Elif statements?

The program stops after the first false
answer.
The program can have only one statement.
The program runs after a false Elif
expression.
The program needs one true answer to run
after the If statement is false

2 Answers

0 votes

Answer:

the answer is D :)

User Lilbiscuit
by
5.9k points
2 votes

Answer:

The program needs one true answer to run

after the If statement is false

Step-by-step explanation:

Else-if statements are attached to If statements. They run if the If statement is false, and have their own condition. If their condition passes, they run their own block of code.

User Toinbis
by
5.8k points