284.
class B inherits Class A
Which statement is right

i.A a =new B();
ii.B b=new A(); 
iii.All of the above

when we call child class contructor it is automatically call base class constructor,which is happen in i but in ii statement b will never get its constructor so it is wrong.