What is the maximum number of else clauses that can be included in an if clause that is not nested
Answers
Answered by
19
Explanation:
Conditional control allows you to control the program's flow of the execution based on a condition.
In programming terms, this means that the statements in the program are not executed sequentially. Rather, one group of statements or another is executed, depending on how the condition is evaluated.
Answered by
0
Explanation:
We can have else clause for every IF clause. But if the IF clause is not nested there is only one else.
Similar questions