Saved Bookmarks
| 1. |
Write the syntax for if-else-if conditional statement. |
|
Answer» Answer: The If-ELSE statement The general form of if-else is as follows: if (test-expression) { TRUE block of statements } Else { FALSE block of statements } Statements; N this TYPE of a construct, if the value of test-expression is true, then the true block of statements will be executed. |
|