logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming References See What Others Are Saying!
  • Question
  • What will be the output of the program given below?
    #include<iostream.h> 
    class CuriousTabBase
    {
        int x;
        public:
        CuriousTabBase(int xx = 0)
        {
            x = xx; 
        }
        void Display()
        {
            cout<< x ;
        }
    };
    class CuriousTabDerived : public CuriousTabBase
    {
        int y; 
        public:
        CuriousTabDerived(int yy = 0)
        {
            y = yy;
        }
        void Display()
        {
            cout<< y ;
        }
    };
    int main()
    {
        CuriousTabBase objBase(10); 
        CuriousTabBase &objRef = objBase;
    
        CuriousTabDerived objDev(20); 
        objRef = objDev;
    
        objDev.Display(); 
        return 0; 
    }


  • Options
  • A. 0
  • B. 10
  • C. 20
  • D. Garbage-value
  • E. It will result in a compile-time/run-time error.

  • Correct Answer
  • 20 


  • More questions

    • 1. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      class Tab
      {
            int x; 
          public:
            Tab();
            void Show() const;
            ~Tab(){}
      };
      Tab::Tab()
      {
          x = 5;
      }
      void Tab::Show() const
      {
          cout<< x;
      }
      int main()
      {
          Tab objB;
          objB.Show();
          return 0; 
      }

    • Options
    • A. The program will print the output 5.
    • B. The program will print the output Garbage-value.
    • C. The program will report compile time error.
    • D. The program will report runtime error.
    • Discuss
    • 2. Which of the following statements is correct?

      1. Change a reference changes the referent.
      2. We can create an array of references.

    • 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
    • 3. Which of the following two entities (reading from Left to Right) can be connected by the dot operator?

    • Options
    • A. A class member and a class object.
    • B. A class object and a class.
    • C. A class and a member of that class.
    • D. A class object and a member of that class.
    • Discuss
    • 4. Destructor has the same name as the constructor and it is preceded by ______ .

    • Options
    • A. !
    • B. ?
    • C. ~
    • D. $
    • Discuss
    • 5. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      class Tab
      {
            int x; 
          public:
            Tab();
           ~Tab();
            void Show() const;
      };
      Tab::Tab()
      {
          x = 25;
      }
      void Tab::Show() const
      {
          cout<< x;
      }
      int main()
      {
          Tab objB;
          objB.Show();
          return 0; 
      }

    • Options
    • A. The program will print the output 25.
    • B. The program will print the output Garbage-value.
    • C. The program will report compile time error.
    • D. The program will report runtime error.
    • Discuss
    • 6. What will be the output of the following program?
      #include<iostream.h> 
      class CuriousTab
      {
          int x, y; 
          public:
          CuriousTab(int xx)
          {
              x = ++xx;
          } 
          ~CuriousTab()
          {
              cout<< x - 1 << " ";
          }
          void Display()
          {
              cout<< --x + 1 << " ";
          } 
      };
      int main()
      {
          CuriousTab objCuriousTab(5);
          objCuriousTab.Display();
          int *p = (int*) &objCuriousTab;
          *p = 40;
          objCuriousTab.Display();
          return 0; 
      }

    • Options
    • A. 6 6 4
    • B. 6 6 5
    • C. 5 40 38
    • D. 6 40 38
    • E. 6 40 39
    • Discuss
    • 7. What will be the output of the following program?
      #include<iostream.h>
      class CuriousTabBase
      {   
          public:
          CuriousTabBase()
          {
              cout<< "Base OK. "; 
          }
          virtual ~CuriousTabBase()
          {
              cout<< "Base DEL. "; 
          }
      };
      class CuriousTabDerived: public CuriousTabBase
      {
          public:
          CuriousTabDerived()
          { 
              cout<< "Derived OK. "; 
          }
          ~CuriousTabDerived()
          { 
              cout<< "Derived DEL. "; 
          }
      };
      int main()
      {
          CuriousTabBase *basePtr = new CuriousTabDerived();
          delete basePtr;
          return 0;
      }

    • Options
    • A. Base OK. Derived OK.
    • B. Base OK. Derived OK. Base DEL.
    • C. Base OK. Derived OK. Derived DEL.
    • D. Base OK. Derived OK. Derived DEL. Base DEL.
    • E. Base OK. Derived OK. Base DEL. Derived DEL.
    • Discuss
    • 8. What will be the output of the following program?
      #include<iostream.h> 
      class AreaFinder
      {
          float l, b, h; 
          float result; 
          public:
          AreaFinder(float hh = 0, float ll = 0, float bb = 0) 
          {
              l = ll; 
              b = bb; 
              h = hh;
          }
          void Display(int ll)
          {
              if(l = 0)
                  result = 3.14f * h * h; 
              else
                  result = l * b; 
              cout<< result; 
          }
      };
      int main()
      {
          AreaFinder objAF(10, 10, 20);
          objAF.Display(0); 
          return 0; 
      }

    • Options
    • A. 0
    • B. 314
    • C. 314.0000
    • D. 200.0000
    • Discuss
    • 9. Which of the following are NOT provided by the compiler by default?

    • Options
    • A. Zero-argument Constructor
    • B. Destructor
    • C. Copy Constructor
    • D. Copy Destructor
    • Discuss
    • 10. It is a __________ error to pass arguments to a destructor.

    • Options
    • A. logical
    • B. virtual
    • C. syntax
    • D. linker
    • Discuss


    Comments

    There are no comments.

Enter a new Comment