InterviewSolution
Saved Bookmarks
| 1. |
What are conditional statements and why are they used in a program? |
|
Answer» Conditional Statements : if, else, SWITCH. Conditional statements helps you to make decision BASED on certain CONDITIONS. These conditions arespecified by a set of conditional statements having booleanexpressions which are evaluated to aboolean value TRUE or false |
|