logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming Objects and Classes See What Others Are Saying!
  • Question
  • What will be the output of the following program?
    #include<iostream.h> 
    class CuriousTabBase
    {
        public:
            float x; 
    }; 
    class CuriousTabDerived : public CuriousTabBase
    {
        public: 
            char ch; 
            void Process()
            {
                ch = (int)((x=12.0)/3.0);
            }
            void Display()
            {
                cout<< (int)ch;
            } 
    }; 
    int main()
    {
        class CuriousTabDerived  *objDev = new CuriousTabDerived;
        objDev->Process();
        objDev->Display();
        return 0; 
    }


  • Options
  • A. The program will print the output 4.
  • B. The program will print the ASCII value of 4.
  • C. The program will print the output 0.
  • D. The program will print the output garbage.

  • Correct Answer
  • The program will print the output 4. 


  • More questions

    • 1. Which of the following is used to make an abstract class?

    • Options
    • A. Declaring it abstract using static keyword.
    • B. Declaring it abstract using virtual keyword.
    • C. Making at least one member function as virtual function.
    • D. Making at least one member function as pure virtual function.
    • Discuss
    • 2. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      int x, y; 
      class CuriousTabTest
      {
          public:
          CuriousTabTest(int xx = 0, int yy = 0)
          {
              x = xx;
              y = yy;
              Display(); 
          } 
          void Display()
          {
              cout<< x << " " << y << " ";
          }
      };
      int main()
      {
          CuriousTabTest objBT(10, 20); 
          int &rx = x; 
          int &ry = y; 
          ry = x;
          rx = y;
          cout<< rx--; 
          return 0; 
      }

    • Options
    • A. The program will print the output 0 0 10.
    • B. The program will print the output 10 20 10.
    • C. The program will print the output 10 20 9.
    • D. It will result in a compile time error.
    • Discuss
    • 3. What will be the output of the following program?
      #include<iostream.h>
      double CuriousTabFunction(double, double, double = 0, double = 0, double = 0);
      int main()
      {
          double d = 2.3;
          cout<< CuriousTabFunction(d, 7) << " ";
          cout<< CuriousTabFunction(d, 7, 6) << endl;
          return 0; 
      }
      double CuriousTabFunction(double x, double p, double q, double r, double s)
      {
          return p +(q +(r + s * x)* x) * x;
      }

    • Options
    • A. 7 20
    • B. 7 19.8
    • C. 7 Garbage
    • D. 7 20.8
    • Discuss
    • 4. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      int main()
      {
          int x = 10;
          int &y = x;
          x++;
          cout<< x << " " << y++;
          return 0; 
      }
      

    • Options
    • A. The program will print the output 11 12.
    • B. The program will print the output 12 11.
    • C. The program will print the output 12 13.
    • D. It will result in a compile time error.
    • Discuss
    • 5. 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.
    • Discuss
    • 6. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      int main()
      {
          int x = 10;
          int &y = x;
          x = 25;
          y = 50;
          cout<< x << " " << --y;
          return 0; 
      }

    • Options
    • A. The program will print the output 25 49.
    • B. It will result in a compile time error.
    • C. The program will print the output 50 50.
    • D. The program will print the output 49 49.
    • Discuss
    • 7. Which of the following concept of oops allows compiler to insert arguments in a function call if it is not specified?

    • Options
    • A. Call by value
    • B. Call by reference
    • C. Default arguments
    • D. Call by pointer
    • Discuss
    • 8. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      class CuriousTab
      {
          int x, y; 
          public:
          void SetValue(int &xx, int &yy)
          {
              x =  xx++;
              y =  yy; 
              cout<< xx << " " << yy;
          }
      };
      int main()
      {
          int x = 10;
          int &y = x;
          CuriousTab objCuriousTab;
          objCuriousTab.SetValue(x , y);
          return 0; 
      }

    • Options
    • A. The program will print the output 10 10.
    • B. The program will print the output 10 11.
    • C. The program will print the output 11 10.
    • D. The program will print the output 11 11.
    • E. It will result in a compile time error.
    • Discuss
    • 9. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      enum xyz
      {
          a, b, c
      };
      int main() 
      {
          int x = a, y = b, z = c;
          int &p = x, &q = y, &r = z;
          p = ++x;
          q = ++y;
          r = ++c;
          cout<< p << q << r;
          return 0;
      }

    • Options
    • A. The program will print the output 1 2 3.
    • B. The program will print the output 2 3 4.
    • C. The program will print the output 0 1 2.
    • D. It will result in a compile time error.
    • Discuss
    • 10. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      int main()
      {
          int m = 2, n = 6;
          int &x = m;
          int &y = n;
          m = x++; 
          x = m++;
          n = y++;
          y = n++;
          cout<< m << " " << n; 
          return 0; 
      }

    • Options
    • A. The program will print output 2 6.
    • B. The program will print output 3 7.
    • C. The program will print output 4 8.
    • D. The program will print output 5 9.
    • E. The program will print output 6 10.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment