Question 211 – What are the Disadvantages of SQL Server modes? Processing is very slow in nature. Object serialization and de-serialization creates overhead for application. As the session data…
Question 201 – What are the Advantages of Session? It helps to maintain user states and data to all over the application. It can easily be implemented and we…
Question 181 – What is a State Management in ASP.Net? State management is the process by which you maintain state and page information over multiple requests for the same…
Question 171 – What are the differences between Machine.Config and a Web.Config files in Asp.Net? Web.config Machine.config Machine level configuration Application/folder level configuration Can have more than one Web.config…
Question 161 – What is Windows Authentication Mode in ASP.Net? Windows Authentication mode relies upon IIS to perform the required authentication of a client. After IIS authenticates a client, it…
Question 151 – What is an ASP.NET Application and Page Life Cycle? ASP.NET creates an environment which can process the request. i.e. creates application object, request, response and context…
Question 141 – What are Value Types? Value types are types which hold both data and the memory on the same location. When we assign the ‘int’ value to the…
Question 131 – What is Shadowing or Hiding? When global and local variable are in the same name, the local variable in a method which use to override the global…
Question 121 – What is a Shallow Copy? A shallow copy means the contents (each array element) contains references to the same object as the elements in the original…