InterviewSolution
Saved Bookmarks
| 1. |
Which statement is used to execute the statements based on different choices/conditions? * SELECT CASEIF... THEN ... ELSEDO WHILENone of these |
|
Answer» This is done by making USE of selection statements. Selection statements ALLOW a program to test several CONDITIONS, and execute instructions based on which condition is true. That is why selection statements are also REFERRED to as conditional statements |
|