Home »
MCQs »
OOPs MCQs
Which one of the following is not the characteristic of a constructor?
56. Which one of the following is not the characteristic of a constructor?
- Constructors can be virtual
- Constructors cannot be referred by their address
- Constructors cannot be inherited
- Constructors are called automatically
Answer: A) Constructors can be virtual
Explanation:
Constructors cannot be virtual, because there is not a virtual table in the memory.