230k views
1 vote
The advantage of dynamic loading is that :

a) A used routine is used multiple times
b) An unused routine is never loaded
c) CPU utilization increases
d) All of these

User Jesse Webb
by
8.0k points

1 Answer

4 votes

Final answer:

The advantage of dynamic loading is that it allows for efficient memory usage, improved CPU utilization, and the reuse of routines.

Step-by-step explanation:

The advantage of dynamic loading is that all of these options are true. Dynamic loading is a programming technique where modules or routines are loaded into memory only when they are needed.

This allows for efficient memory usage and improves CPU utilization as only the necessary routines are loaded and executed. Additionally, dynamic loading allows for the reuse of routines, further optimizing code execution.

User CnativeFreak
by
8.8k points