InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between IF...THEN and IF...THEN...ELSE statements? |
|
Answer» If the condition is FALSE then no statement will be executed. IF_THEN_ELSE STATEMENT ➡ In this statement if the condition given after IF is TRUE then the statement given after THEN will be executed but if the condition is false then the statement after ELSE will be executed.hope it's HELP u |
|