ASP.Net Caching Questions
-
What is the difference between Cache object and Application object?
The main difference between the Cache and Application objects is that the Cache object provides cache-specific features, such as dependencies and expiration policies.
-
What is an application domain?
Previously "PROCESS" where used as security boundaries. One process has its own virtual memory and does not over lap the other process virtual memory; due to this one process can not crash the other process. So any problem or error in one process does not affect the other process. In .NET they went one step ahead introducing application domains. In application domains multiple applications can run in same process with out influencing each other. If one of the application domains throws error it does not affect the other application domains. To invoke method in a object running in different application domain .NET remoting is used.
-
What is multi-tasking?
It is a feature of modern operating systems with which we can run multiple programs at same time
-
Read more
February 16, 2008 | Filed Under .Net Interview Questions | Leave a Comment
.NET Interoperability Interview Questions
-
How can we use COM Components in .NET?
ASP.Net Interview Questions - 2
-
Can we make sessions do not use cookies?
We need to enable "cookieless" property in Web.config.
<sessionState cookieless="true" timeout="20" />
-
What is the sequence in which ASP.NET events are processed ?
Following is the sequence in which the events occur (extremely simplified version, for more detailed description see another post):
.Net Interview Questions - 2
-
What is garbage collection?
Garbage collection is a CLR feature which automatically manages memory.
February 3, 2008 | Filed Under .Net Interview Questions | Leave a Comment
-
ASP.Net Interview Questions - 1
-
-