State
whether the following statements about the constructor are True or False.
i)
constructors should be declared in the private section.
ii)
constructors are invoked automatically when the objects are created.
class x
{ int a; public : x()
{}
};
class y
{ x x1; public : y(){} };
class z : public y,x
{
int b; public: z(){} }z1;
What
is the order of constructor for object z1 to be invoked?