Multiple choice technology programming languages Which of the following statment(s) is(are) true for constructors & destructors constructors are executed only(once) when the first object is instantiated destructor is executed only at the end of main() execution constructors are executed on every object instantiation destructor is executed when all the objects of the class moves out of scope constructors can not take parameters Reveal answer Fill a bubble to check yourself C Correct answer Explanation Constructors run automatically every time a new object of that class type is instantiated. In C++, destructors run when each individual object goes out of scope, not merely at the end of the entire program, and constructors can accept parameters.