Constructor and Destructor

Which of the following is NOT TRUE about constructors and destructors? They must the same names as class. They cannot return values. They can be invoked only once in a program. They are called automatically. Which one of the following statements does not correctly describe one of the many characteristics of constructors? They can be inherited. They can have default arguments. They can not return values, like other functions. They can be declared anywhere in the class. A constructor for the class Area having two data members length and breadth…

Read More