InterviewSolution
Saved Bookmarks
| 1. |
How Does Dynamic Loading Aid In Better Memory Space Utilization? |
|
Answer» With dynamic loading, a routine is not LOADED until it is called. This method is especially useful when large AMOUNTS of CODE are NEEDED in order to handle infrequently occurring cases such as error ROUTINES. With dynamic loading, a routine is not loaded until it is called. This method is especially useful when large amounts of code are needed in order to handle infrequently occurring cases such as error routines. |
|