InterviewSolution
Saved Bookmarks
| 1. |
What Is Subroutine? |
|
Answer» A subroutine is a self-contained set of STATEMENTS that can be used from ANYWHERE in a PROGRAM. The subroutine performs its specific task and then returns CONTROL to the program that calls the subroutine. A subroutine is a self-contained set of statements that can be used from anywhere in a program. The subroutine performs its specific task and then returns control to the program that calls the subroutine. |
|