InterviewSolution
Saved Bookmarks
| 1. |
Which procedure parameter enables the caller to pass in a value and get back a value?(a) IN(b) OUT(c) INOUT(d) GETINOUT |
|
Answer» Right choice is (c) INOUT To explain I would say: In an IN parameter, the caller passes a value into the procedure. An OUT parameter is exactly the opposite. The ‘INOUT’ parameter enables the caller to pass in a value and also to get back a value. |
|