(Choose 1 answer)
}
class A {
protected int x;
public A()
{ x = 2;
} public void Print()
Console.Write(x*x);
}
} class B: A {
public new void Print()
Console.Write(++x);
}
}
class Program
{
static void Main(string[] args)
{
A obj1 = new B();
obj1.Print();
Console.WriteLine();
} The output will be
A. 4
R 1
Exit 50