Q) What is output of C# code? Output:Base class constructorChild class constructorExplanation: In inheritance C# oops relationship, when we create object of a derived or child class then first base class constructor then derived class constructor get called. Q) What is output of below C# code example? Output: Compiler error – constructor re-definition Compiler error […]