-
-
-
-
-
Which of the following statements is not true for interfaces
A) Interface definitions does not have implementationB) Interfaces must be declared as publicC) Interfaces can be instantiatedD) Interface does not have constructorsExplanation: Interfaces can only be implemented by inheriting and they can not be instantiated
-
Which of the following statement is invalid with regards to constructor
A) Constructors should have the same name as class nameB) Constructors have to be public so that class can be instantiatedC) Constructors can not be overloadedExplanation: Constructors can be overloaded with different parameters
-
-
How do you make a class not instantiable
A) Making class as AbstractB) Having a Private constructorC) Making the class sealedD) Both A & B
C# Interview Questions
Ans