C++ Constructors Question:
Download Questions PDF

Which of the following statement is correct about constructors?

A. A constructor has a return type.
B. A constructor cannot contain a function call.
C. A constructor has no return type.
D. A constructor has a void return type.

C++ Constructors Interview Question
C++ Constructors Interview Question

Answer:

Option C
A constructor has no return type.

Download C++ Constructors Interview Questions And Answers PDF

Previous QuestionNext Question
To ensure that every object in the array receives a destructor call, always delete memory allocated as an array with operator __________ .

A. destructor
B. delete
C. delete[]
D. kill[]
E. free[]
Which of the following statement is correct whenever an object goes out of scope?

A. The default constructor of the object is called.
B. The parameterized destructor is called.
C. The default destructor of the object is called.
D. None of the above.