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…
Question 111 – What is the Constructor of Hashtable? We have ten overloaded Constructor. we will see some important constructors of Hashtable. Constructor with no parameters – Creates an…
Question 101 – What is a Parameterized constructor? Constructor that accepts arguments is known as parameterized constructor. There may be situations, where it is necessary to initialize various data members…
Question 91 – What is an Interface? An interface looks like a class, but has no implementation. An interface is a named set of method signatures. An Interface is a…
Question 81 – What are the Types of Inheritance? Implementation inheritance refers to the ability to use a base class’s properties and methods with no additional coding. Interface inheritance…