Which ONE of the following is a DISADVANTAGE of using dynamically linked library (DLL), compared to using statically linked library?
Step-by-step Solution:
Let us analyze the given options regarding Dynamically Linked Libraries (DLLs): 1. DLLs result in a **smaller** executable file size because the library code is loaded at runtime and is not embedded into the executable file. 2. DLLs typically **reduce** RAM usage because multiple programs can share a single copy of the DLL loaded in memory. 3. Programs **can** easily take advantage of bug fixes in a DLL. By simply updating the DLL file, all programs using it benefit from the fix without needing recompilation. Since all the statements listed in the options describe incorrect disadvantages (they are actually advantages), the correct choice is 'None of the other options'.