logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming Constructors and Destructors See What Others Are Saying!
  • Question
  • Which of the following statement is correct?


  • Options
  • A. A constructor has the same name as the class in which it is present.
  • B. A constructor has a different name than the class in which it is present.
  • C. A constructor always returns an integer.
  • D. A constructor cannot be overloaded.

  • Correct Answer
  • A constructor has the same name as the class in which it is present. 


  • More questions

    • 1. Which of the following concepts is used to implement late binding?

    • Options
    • A. Virtual function
    • B. Operator function
    • C. Const function
    • D. Static function
    • Discuss
    • 2. Which of the following access specifies is used in a class definition by default?

    • Options
    • A. Protected
    • B. Public
    • C. Private
    • D. Friend
    • Discuss
    • 3. Which of the following statement is correct?

    • Options
    • A. A destructor has the same name as the class in which it is present.
    • B. A destructor has a different name than the class in which it is present.
    • C. A destructor always returns an integer.
    • D. A destructor can be overloaded.
    • Discuss
    • 4. Functions can be declared to return a reference type. There are reasons to make such a declaration/Which of the following reasons are correct?

      1. The information being returned is a large enough object that returning a reference is more efficient than returning a copy.
      2. The type of the function must be a R-value.

    • Options
    • A. Only 1 is correct.
    • B. Only 2 is correct.
    • C. Both 1 and 2 are correct.
    • D. Both 1 and 2 are incorrect.
    • Discuss
    • 5. Constructors __________ to allow different approaches of object construction.

    • Options
    • A. cannot overloaded
    • B. can be overloaded
    • C. can be called
    • D. can be nested
    • Discuss
    • 6. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      class PowerFinder
      {
          public:
          void Power(int x = 1, int y = 1)
          {
              int P = 1, i = 1;
              while(++i <= y)
              {
                  P *= x;
              }
              cout<< P << endl; 
          } 
      };
      int main()
      {
          PowerFinder FP; 
          FP.Power(2, 6); 
          return 0;
      }

    • Options
    • A. The program will print the output 12.
    • B. The program will print the output 16.
    • C. The program will print the output 32.
    • D. The program will print the output 36.
    • E. The program will execute infinite time.
    • Discuss
    • 7. What will be the output of the following program?
      #include<iostream.h> 
      class BaseCounter
      {
          protected:
          long int count;
      
          public:
          void CountIt(int x, int y = 10, int z = 20)
          {
              count = 0;
              cout<< x << " " << y << " " << z << endl;
          } 
          BaseCounter()
          {
              count = 0;
          }
          BaseCounter(int x)
          {
              count = x ;
          } 
      }; 
      class DerivedCounter: public BaseCounter
      {
          public:
          DerivedCounter()
          { }
          DerivedCounter(int x): BaseCounter(x) 
          { }
      };
      int main()
      {
          DerivedCounter objDC(30); 
          objDC.CountIt(40, 50); 
          return 0; 
      }

    • Options
    • A. 30 10 20
    • B. Garbage 10 20
    • C. 40 50 20
    • D. 20 40 50
    • E. 40 Garbage Garbage
    • Discuss
    • 8. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      class CuriousTab
      {
          static int x; 
          public:
          static void SetData(int xx)
          {
              this->x = xx; 
          }
          static void Display() 
          {
              cout<< x ;
          }
      };
      int CuriousTab::x = 0; 
      int main()
      {
          CuriousTab::SetData(22);
          CuriousTab::Display();
          return 0; 
      }

    • Options
    • A. The program will print the output 0.
    • B. The program will print the output 22.
    • C. The program will print the output Garbage.
    • D. The program will report compile time error.
    • Discuss
    • 9. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      struct MyStructure
      {
          class MyClass
          {
              public:
              void Display(int x, float y = 97.50, char ch = 'a')
              {
                  cout<< x << " " << y << " " << ch;
              }
          }Cls; 
      }Struc;
       
      int main()
      {
          Struc.Cls.Display(12, 'b');
          return 0; 
      }

    • Options
    • A. The program will print the output 12 97.50 b.
    • B. The program will print the output 12 97.50 a.
    • C. The program will print the output 12 98 a.
    • D. The program will print the output 12 Garbage b.
    • E. The program will print the output 12 Garbage a.
    • Discuss
    • 10. What will be the output of the following program?
      #include<iostream.h> 
      class CuriousTab
      {
          int x, y, z; 
          public:
          void Apply(int xx = 12, int yy = 21, int zz = 9)
          {
              x = xx;
              y = yy += 10;
              z = x -= 2;
          }
          void Display(void)
          {
              cout<< x << " " << y << endl; 
          } 
          void SetValue(int xx, int yy)
          {
              Apply(xx, 0, yy);
          }
      };
      int main()
      {
          CuriousTab *pCuriousTab= new CuriousTab;
         (*pCuriousTab).SetValue(12, 20);
          pCuriousTab->Display();
          delete pCuriousTab;
          return 0; 
      }

    • Options
    • A. 10 10
    • B. 12 10
    • C. 12 21
    • D. 12 31
    • E. The program will report compilation error.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment