Computer Science, asked by swayam3336, 1 year ago

what is if-elseif construct?

Answers

Answered by rosangiri28pfbc5r
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 AVENGERS789456
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