123k views
5 votes
What do Dynamic-Link Library (DLL) files do?

1 Answer

1 vote

Answer:

The use of DLLs helps promote modularization of code, code reuse, efficient memory usage, and reduced disk space. So, the operating system and the programs load faster, run faster, and take less disk space on the computer.

Step-by-step explanation:

A dynamic link library (DLL) is a collection of small programs that larger programs can load when needed to complete specific tasks. The small program, called a DLL file, contains instructions that help the larger program handle what may not be a core function of the original program.

User Danlooo
by
3.6k points