ASP.Net Caching Questions

  1. 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.

  2. Read more

    .Net Remoting and Webservices Interview Questions

    1. 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.

    2. Read more

      .Net Threading Questions

      1. What is multi-tasking?

        It is a feature of modern operating systems with which we can run multiple programs at same time

      2. Read more

        .NET Interoperability Interview Questions

        1. How can we use COM Components in .NET?

          Read more

          ASP.Net Interview Questions - 2

          1. Can we make sessions do not use cookies?

            We need to enable "cookieless" property in Web.config.


            <sessionState cookieless="true" timeout="20" />

          2. Read more

            ASP.Net Interview Questions - 1

            1. 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):

              Read more

              .Net Interview Questions - 2

              1. What is garbage collection?

                Garbage collection is a CLR feature which automatically manages memory.

                Read more