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()
{
Console.WriteLine("x");
}
}
class y : x
{
protected void show()
{
Console.WriteLine("y");
}
}
class Program
{
static void Main(string[] 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 blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!