114k views
4 votes
The ________ statement acts like a chain of if statements. Each performs its test, one after the other, until one of them is found to be true or until the construct is exited without any test ever evaluating to true.

2 Answers

6 votes

Answer:

If...Then...ElseIf

Step-by-step explanation:

If... Then... ElseIf statement perform their tests, one after the other, until one of them is found to be true.

User Guillermo Gomez
by
8.7k points
4 votes

Answer: if then elseif

Step-by-step explanation:

It can be a chain of statement as shown below:

while(condition)

{

if( condition){

Then {

}

}

else if {

}

}

User Jjmorph
by
8.0k points