what is if-elseif construct?
Answers
Answered by
0
if-else if-else Construct. An if statement construct can have one or more optional else-if constructs. When the if condition fails, the immediately followed else-if is executed.
Answered by
1
Explanation:
- elseif , as its name suggests, is a combination of if and else . Like else , it extends an if statement to execute a different statement in case the original if expression evaluates to false .
Similar questions