What is the difference between an EXE and a DLL?
Answer Posted / debmalya kundu
DLL:
1)it has versioning
2)it is not self executable
3)it runs in application process memory
4)it has no entry point
5)it is reusable
Exe:
1)it is self executable
2)it has no versioning
3)it runs in own memory
4)it have main function(Entry point)
5)it is self executable
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
Can you use Web API with ASP.NET Web Form?
Explain diff. Between friend and protected friend?
Which Is Faster MVC or ASP.net ?
What is the maximum amount of memory any single process on windows can address?
How can we apply themes to an asp.net application?
What is break mode?
How to disable validator control by client side JavaScript?
Explain server side state management system.
Can a master page have more than one contentplaceholder?
What is the usie of activex control in .net?
Explain a program using code nuggets to create a simple application? : asp.net mvc
Which platform does Microsoft .NET use for exchanging data between applications?
What is the use of response redirect in asp.net?
Can we have multiple worker process in an ASP.NET application? If so then how it has been handled by application? And who handles it?
How do I open an ashx file?