InterviewSolution
Saved Bookmarks
| 1. |
Which variable returns code from operations that return true or false?(a) $rc(b) $rv(c) $rows(d) $ary |
|
Answer» Right answer is (a) $rc Explanation: The Perl Non-handle variable ‘$rc’ returns code from operations that return true or false. ‘$rv’ returns value from operations that return an integer. ‘$rows’ returns value from operations that return a row count. |
|