InterviewSolution
Saved Bookmarks
| 1. |
What is the role of a return statement in a method |
|
Answer» A return statement ends the execution of a function, and returns CONTROL to the calling function. Execution RESUMES in the calling function at the point immediately following the CALL. A return statement can return a VALUE to the calling function. |
|