(Choose 1 answer)
}
} class B: A {
public new void Print(){
Console.Write(++x);
FLOW.COM
}
class Program
{
static void Main(string[] args)
{
A obj1 = new B();
obj1.Print();
Console.WriteLine();
The output will be
A. 4
B. 1
C. 2
D. 3
an tot ni
}
}
Exit 24