Rohti Ambani
Class A()
{
function Test()
Msg(Base Class);
}
Class B Inherits from A()
Msg(“Child Class”);
A a = new B()
Can this is possible. If Yes what msg it will show and why?