0 votes
in Operating System by
How does dynamic loading aid in better memory space utilization?

1 Answer

0 votes
by

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.

...