C++ Constructors

  Home  C++ Programming  C++ Constructors


“C++ Constructors frequently Asked Questions by expert members with experience in C++ constructors. These questions and answers will help you strengthen your technical skills, prepare for the new job test and quickly revise the concepts”



51 C++ Constructors Questions And Answers

24⟩ Which of the following statements are correct? A. Constructor is always called explicitly. B. Constructor is called either implicitly or explicitly, whereas destructor is always called implicitly. C. Destructor is always called explicitly. D. Constructor and destructor functions are not called at all as they are always inline.

Option B

Constructor is called either implicitly or explicitly, whereas destructor is always called implicitly.

 209 views