InterviewSolution
Saved Bookmarks
| 1. |
The elsif statement can add many alternatives to if/else statements.(a) True(b) FalseI had been asked this question in an interview.I want to ask this question from The Elsif Conditional Statement topic in chapter Conditional Statements of Ruby |
|
Answer» RIGHT OPTION is (a) True Easiest EXPLANATION: We can add many conditions between if/else STATEMENTS using elsif conditional statement. |
|