InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Call By Content And Call By Reference? |
|
Answer» The parameters PASSED in a CALL By CONTENT are protected from modification by the called program. In Call By REFERENCE, parameters can be MODIFIED by the called program. The parameters passed in a Call By Content are protected from modification by the called program. In Call By Reference, parameters can be modified by the called program. |
|