What is the difference between an EXE and a DLL?
Answer Posted / krishna mohan
The Anatomy of a DLL
Dynamic linking is a mechanism that links applications to
libraries at run time. The libraries remain in their own
files and are not copied into the executable files of the
applications. DLLs link to an application when the
application is executed, rather than when it is created.
DLLs may also contain links to other DLLs.
Note Many times, DLLs are placed in files with different
extensions such as .EXE, .DRV or .DLL.
Applications and DLLs can link to other DLLs automatically
if the DLL linkage is specified in the IMPORTS section of
the module definition file as part of the compile or you
can explicitly load them using the Windows LoadLibrary
function.
ece is a excutable file
By Krishanamohan From T.T.plaace 7 C.P. new delhi
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is viewstate? What does the "enableviewstate” property do? Whay would I want it on or off?
What is state management in asp.net with example?
What is the difference between Classic ASP and ASP.Net?
What are the types of caching in asp.net?
What is different authentication mechanisms used in ASP.NET?
Describe the .net base class library.
Explain the difference between singleton and single call?
Where is asp.net session stored?
Can you explain how ASP.NET application life cycle and page life cycle events fire?
What are the features of asp.net mvc?
Describe how passport authentication works.
Explain the various authentication mechanisms in asp.net.
What are early binding and late binding.
Explain repository pattern in asp.net mvc? : asp.net mvc
Why session is more secure than cookies?