Q204
What will be the output of the following C# code? class sample public sample() Console.WriteLine("THIS IS BASE CLASS constructor"); public class sample1 : sample class Program static void Main(string[] args) sample1 obj = new sample1(); Console.ReadLine();
A.
Code executes successfully prints nothing
B.
This is base class constructor
C.
Compile time error
AnswerD.
None of the mentioned
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board