Differentiate between if then and if then else
Answers
Answered by
0
Answer:
In if, the statements inside the if block will execute if the condition is true and the control is passed to the next statement after the if block. In the if else, if the condition is true, the statements inside the if block execute and if the condition is false the statements in the else block execute.
Similar questions