By
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…
By
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…
By
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…
By
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…
By
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…
By
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…
By
Question 71 – What are the different Access Modifiers available? Public – Access to same assembly or another assembly that references it. Private – Access to same class or…
By
Question 61 – What is Runtime Host? Ranging from Windows applications, Web applications to Mobile applications, CLR is designed to support various types of applications. .NET Framework provides different…