logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming References Comments

  • Question
  • 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.

  • Correct Answer
  • The program will print the output 12 11. 


  • References problems


    Search Results


    • 1. What will be the output of the following program?
      #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 = z; 
          p = ++q;
          q = ++p;
          z = ++q + p++; 
          cout<< p << " " << q << " " << z;
          return 0; 
      }

    • Options
    • A. 2 3 6
    • B. 4 4 7
    • C. 4 5 8
    • D. 3 4 6
    • Discuss
    • 2. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      int CuriousTabFunction(int m)
      {
          m *= m;
          return((10)*(m /= m)); 
      }
      int main()
      {
          int c = 9, *d = &c, e;
          int &z = e;
          e = CuriousTabFunction(c-- % 3? ++*d :(*d *= *d));
          z = z + e / 10;
          cout<< c << " " << e;
          return 0;
      }

    • Options
    • A. It will result in a compile time error.
    • B. The program will print the output 64 9.
    • C. The program will print the output 64 10.
    • D. The program will print the output 64 11.
    • Discuss
    • 3. How many objects can be created from an abstract class?

    • Options
    • A. Zero
    • B. One
    • C. Two
    • D. As many as we want
    • Discuss
    • 4. Which of the following statements is correct when a class is inherited privately?

    • Options
    • A. Public members of the base class become protected members of derived class.
    • B. Public members of the base class become private members of derived class.
    • C. Private members of the base class become private members of derived class.
    • D. Public members of the base class become public members of derived class.
    • Discuss
    • 5. Constructor is executed when _____.

    • Options
    • A. an object is created
    • B. an object is used
    • C. a class is declared
    • D. an object goes out of scope.
    • Discuss
    • 6. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      int main()
      {
          int x = 80; 
          int &y = x;
          x++;
          cout << x << " " << --y;
          return 0;
      }

    • Options
    • A. The program will print the output 80 80.
    • B. The program will print the output 81 80.
    • C. The program will print the output 81 81.
    • D. It will result in a compile time error.
    • Discuss
    • 7. 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
    • 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> 
      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
    • 10. 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


    Comments

    There are no comments.

Enter a new Comment