1.

Select the statement which should be added to the current set of code to get the output as 10 20 ? class baseclass { protected int a = 20; } class derived : baseclass { int a = 10; public void math() { /* add code here */ } }

A. console.writeline(base.a + + a);
B. Console.Writeline( mybase.a + + a);
C. console.writeline(a + + base.a);
D. console.writeline(base.a + + a);
Answer» D. console.writeline(base.a + + a);


Discussion

No Comment Found