VB .Net Question:
Download Questions PDF

What is the difference between .dll extension and .exe extension files?

Answer:

The main difference between .dll and .exe is

.dll is the In process component where it take up the client's memory space to run. So the communication between the application and component(dll) is very fast.

.EXE is the Out of process component. It uses its own memory(not application memory) to run the component. The communication between the application and component is slow when compared to .dll

Download VB .Net Interview Questions And Answers PDF

Previous QuestionNext Question
How VB Implements the Disconnected Architecture as like VB.Net?What is the base class of .net?