logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming Objects and Classes See What Others Are Saying!
  • Question
  • Which of the following statement is correct about the program given below?
    #include<iostream.h> 
    class CuriousTab
    {
        int x; 
        float y; 
        public:
        void Function()
        {
            x = 4; 
            y = 2.50; delete this;
        }
        void Display()
        {
            cout<< x << " " << y;
        } 
    }; 
    int main()
    {
        CuriousTab *pCuriousTab = new CuriousTab();
        pCuriousTab->Function(); 
        pCuriousTab->Function(); 
        pCuriousTab->Display(); 
        return 0; 
    }


  • Options
  • A. The program will print the output 4 2.5.
  • B. The program will print the output 4.
  • C. The program will report runtime error.
  • D. The program will report compile time error.

  • Correct Answer
  • The program will report runtime error. 


  • More questions

    • 1. 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
    • 2. 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
    • 3. 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
    • 4. 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
    • 5. Which of the following term is used for a function defined inside a class?

    • Options
    • A. Member Variable
    • B. Member function
    • C. Class function
    • D. Classic function
    • Discuss
    • 6. A union that has no constructor can be initialized with another union of __________ type.

    • Options
    • A. different
    • B. same
    • C. virtual
    • D. class
    • Discuss
    • 7. Which of the following implicitly creates a default constructor when the programmer does not explicitly define at least one constructor for a class?

    • Options
    • A. Preprocessor
    • B. Linker
    • C. Loader
    • D. Compiler
    • Discuss
    • 8. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      int main()
      {
          int arr[] = {1, 2 ,3, 4, 5}; 
          int &zarr = arr;
          for(int i = 0; i <= 4; i++)
          {
              arr[i] += arr[i];
          }
          for(i = 0; i <= 4; i++)
              cout<< zarr[i]; 
          return 0; 
      }

    • Options
    • A. The program will print the output 1 2 3 4 5.
    • B. The program will print the output 2 4 6 8 10.
    • C. The program will print the output 1 1 1 1 1.
    • D. It will result in a compile time error.
    • Discuss
    • 9. Which of the following is an invalid visibility label while inheriting a class?

    • Options
    • A. public
    • B. private
    • C. protected
    • D. friend
    • Discuss
    • 10. 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


    Comments

    There are no comments.

Enter a new Comment