InterviewSolution
Saved Bookmarks
| 1. |
What is the syntax of if else statement in Perl? |
|
Answer» The SYNTAX of if else STATEMENT in Perl is: if(boolean_expression) { # statement(s) will execute if the given condition is TRUE } else { # statement(s) will execute if the given condition is false } |
|