Question: Consider the following code. Which statement is correct? class x { protected void display ( ) { Console . WriteLine ( x )
Consider the following code. Which statement is correct?
class x
protected void display
ConsoleWriteLinex;
class y : x
protected void show
ConsoleWriteLiney;
class Program
static void Mainstring args
y anObject new y;
anObject.show;
Console.ReadKey;
Group of answer choices
The output is x
The output is y
There is an error because method show is not accessible in class program
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
