InterviewSolution
Saved Bookmarks
| 1. |
What is a subroutine? |
|
Answer» A subroutine is a reusable section of code. It is a modularization unit within the program where a function is encapsulated in the form of source code. You page out a part of a program to a subroutine to get a better overview of the main program, and to use the corresponding sequence of statements many times. |
|