Vidyalelo
C# Programming · Q51

Classes and Objects in C Sharp

Programming · C# Programming · question 51

Q51

What will be the output of the following C# code? class A public int i; private int j; class B :A void display() base.j = base.i + 1; Console.WriteLine(base.i + " " + base.j); class Program static void Main(string[] args) B obj = new B(); obj.i = 1; obj.j = 2; obj.display(); Console.ReadLine();

A.
1, 3
B.
2, 3
C.
1, 2
D.
compile time error
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board