Multiple choice Which of the following is not a characteristic of a constructor? It should be declared in the public section. It can be invoked automatically when the objects are created. It cannot return any value not even void type. Constructors can be virtual. Constructors can make implicit calls to the operators new and delete when memory allocation is required. Reveal answer Fill a bubble to check yourself D Correct answer Explanation This is not the characteristic of a constructor as constructors cannot be virtual because virtual keyword creates a single copy of the function to derived class.