| 1. |
Write any five benefits in using modular programming? |
|
Answer» The benefits of using modular programming include: 1. Less code to be written. 2. A single procedure can be developed for reuse, eliminating the need to retype the code many times. 3. Programs can be designed more easily because a small team deals with only a small part of the entire code. 4. Modular programming allows many programmers to collaborate on the same application. 5. The code is stored across multiple files. 6. Code is short, simple and easy to understand. 7. Errors can easily be identified, as they are localized to a subroutine or function. 8. The same code can be used in many applications. 9. The scoping of variables can easily be controlled. |
|