The Highest Post






=
Statistics
Count 94
Avg 21.00
Min 21
Max 21

Details



Jonathan Jebrown Q #14) What is an EXE and a DLL? Ans: Exe and DLLs are Assembly executable modules. Exe is an executable file. This runs the application for which it is designed. An Exe is generated when we build an application. Hence the assemblies are loaded directly when we run an Exe. However, an Exe cannot be shared with the other applications. DLL stands for Dynamic Link Library. It is a library that consists of code which needs be hidden. The code is encapsulated inside this library. An Application can consist of many DLLs. These can be shared with the other applications as well. Other applications which need to share this DLL need not worry about the code intricacies as long as it is able to call the function on this DLL.
Post Reply