.Net Architecture Questions

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

  1. What are design patterns?

    Design patterns are recurring solution to recurring problems in software architecture. There are three basic classification of patterns - creational, structural and behavioral patterns.

    Read more

    .Net Object-Oriented Programming Concepts Questions

    1. What is Object Oriented Programming?

      It is a problem solving technique to develop software systems. It is a technique to think real world in terms of objects. Object maps the software model to real world concept. These objects have responsibilities and provide services to application or other objects.

    2. Read more

      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

                    ADO.Net Questions - Part 2

                    1. How can we save all data from DataSet?

                      Dataset has AcceptChanges method which commits all the changes since last time AcceptChanges has been executed.

                    2. Read more

                      Next Page →