Multiple choice

Which of the following is not a type of constructor in C++?

  1. Copy

  2. Default

  3. Parameterized

  4. Dynamic

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

There is no dynamic constructor in C++. The different types of constructors are -- Default, Parameterized and Copy.