InterviewSolution
Saved Bookmarks
| 1. |
Explain the advantages of the modularization technique. |
|
Answer» Modularization is breaking the APPLICATION code into smaller parts, so that MAINTENANCE will be easier. Consider an example where you want to implement the same logic like the addition of two numbers in multiple parts of the same program, then put the logic within a modularization UNIT and this modularization unit can be called wherever you want to add two numbers. Advantages of modularization TECHNIQUES are:
|
|