Basic Dot Net Question:
Download Questions PDF

Explain what relationship is between a Process, Application Domain, and Application?

Answer:

Each process is allocated its own block of available RAM space, no process can access another process’ code or data. If the process crashes, it dies alone without taking the entire OS or a bunch of other applications down.
A process is an instance of a running application. An application is an executable on the hard drive or network. There can be numerous processes launched of the same application (5 copies of Word running), but 1 process can run just 1 application.

Download Dot Net Interview Questions And Answers PDF

Previous QuestionNext Question
What’s typical about a Windows process in regards to memory allocation in .NET? What are possible implementations of distributed applications in .NET?