adplus-dvertising
frame-decoration

Question

Which of the following statements is correct about the constructors and destructors?

a.

Destructors can take arguments but constructors cannot.

b.

Constructors can take arguments but destructors cannot.

c.

Destructors can be overloaded but constructors cannot be overloaded.

d.

Constructors and destructors can both return a value.

Answer: (b).Constructors can take arguments but destructors cannot.

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following statements is correct about the constructors and destructors?

Similar Questions

Discover Related MCQs

Q. Which of the following access specifies is used in a class definition by default?

Q. Which of the following statement is correct with respect to the use of friend keyword inside a class?

Q. Which of the following keywords is used to control access to a class member?

Q. Which of the following can access private data members or member functions of a class?

Q. Which of the following type of data member can be shared by all instances of its class?

Q. Which of the following also known as an instance of a class?

Q. Constructor is executed when _____.

Q. Which of the following statements about virtual base classes is correct?

Q. How many objects can be created from an abstract class?

Q. Which of the following statements is correct when a class is inherited privately?

Q. What does a class hierarchy depict?

Q. Which of the following can be overloaded?

Q. Which of the following means "The use of an object of one class in definition of another class"?

Q. Which of the following is the only technical difference between structures and classes in C++?

Q. Which of the following statements are correct for a static member function?
1. It can access only other static members of its class.
2. It can be called using the class name, instead of objects.

Q. When an object goes out of scope, which function is called automatically?

Q. Destructors do not receive parameters and do not

Q. Scope resolution operator is denoted by

Q. A class data members and member functions belongs to

Q. Passing arguments to a destructor, or specifying return type to destructor, causes