Question Detail

We can do constructor overloading in C++ ?

  • True
  • False
Similar Questions :

1. Data members and member functions are enclosed within ?

  • union
  • structure
  • class
  • array

2. Classes that can be used to instantiate objects are called concrete classes.

  • True
  • False

3. The objects can directly access ?

  • Public members
  • Private members
  • Both of above
  • None of above

4. How we can access data members using objects ?

  • object@datamember
  • object*datamember
  • object->datamember
  • object.datamember

5. The derived class constructor

  • never passes any values to base class constructor
  • can pass arguments only to one base class constructor function
  • is responsible for passing the entire test of arguments needed by base class constructors
  • none of above
Read more from - C++ Programming Questions Answers - Set 2