logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming References See What Others Are Saying!
  • Question
  • Which of the following statement is correct about the program given below?
    #include<iostream.h> 
    int i, j; 
    class CuriousTab
    {
        public:
        CuriousTab(int x = 0, int y = 0)
        {
            i = x; 
            j = x; 
            Display();
        }
        void Display()
        {
            cout<< j <<" ";
        } 
    }; 
    int main()
    {
        CuriousTab objCuriousTab(10, 20); 
        int &s = i; 
        int &z = j; 
        i++;
        cout<< s-- << " " << ++z; 
        return 0; 
    }


  • Options
  • A. The program will print the output 0 11 21.
  • B. The program will print the output 10 11 11.
  • C. The program will print the output 10 11 21.
  • D. The program will print the output 10 11 12.
  • E. It will result in a compile time error.

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


  • More questions

    • 1. What will be the output of the following program?
      #include<iostream.h>
      long CuriousTabFunction(int x, int y = 5, float z = 5)
      {
          return(++x * ++y + (int)++z);
      }
      int main()
      {
          cout<< CuriousTabFunction(20, 10); 
          return 0;
      }

    • Options
    • A. 237
    • B. 242
    • C. 240
    • D. 35
    • E. The program will report error on compilation.
    • Discuss
    • 2. Which of the following means "The use of an object of one class in definition of another class"?

    • Options
    • A. Encapsulation
    • B. Inheritance
    • C. Composition
    • D. Abstraction
    • Discuss
    • 3. Which of the following statement is correct?

    • Options
    • A. Destructor destroys only integer data members of the object.
    • B. Destructor destroys only float data members of the object.
    • C. Destructor destroys only pointer data members of the object.
    • D. Destructor destroys the complete object.
    • Discuss
    • 4. Which of the following statements are correct?

    • Options
    • A. Constructor is always called explicitly.
    • B. Constructor is called either implicitly or explicitly, whereas destructor is always called implicitly.
    • C. Destructor is always called explicitly.
    • D. Constructor and destructor functions are not called at all as they are always inline.
    • Discuss
    • 5. What will be the output of the following program?
      #include<iostream.h> 
      void MyFunction(int a, int b = 40)
      {
          cout<< " a = "<< a << " b = " << b << endl;
      }
      int main()
      {
          MyFunction(20, 30);
          return 0; 
      }

    • Options
    • A. a = 20 b = 40
    • B. a = 20 b = 30
    • C. a = 20 b = Garbage
    • D. a = Garbage b = 40
    • Discuss
    • 6. Which of the following is correct about function overloading?

    • Options
    • A. The types of arguments are different.
    • B. The order of argument is different.
    • C. The number of argument is same.
    • D. Both A and B.
    • Discuss
    • 7. Which of the following statement is correct about the program given below?
      #include<iostream.h>
      long GetNumber(long int Number)
      {
          return --Number;
      }
      float GetNumber(int Number)
      {
          return ++Number;
      }
      int main()
      {
          int x = 20;
          int y = 30;
          cout<< GetNumber(x) << " ";
          cout<< GetNumber(y) ;
          return 0; 
      }

    • Options
    • A. The program will print the output 19 31.
    • B. The program will print the output 20 30.
    • C. The program will print the output 21 31.
    • D. The program will print the output 21 29.
    • E. Program will report compile time error.
    • Discuss
    • 8. Which of the following statements is correct?

    • Options
    • A. Base class pointer cannot point to derived class.
    • B. Derived class pointer cannot point to base class.
    • C. Pointer to derived class cannot be created.
    • D. Pointer to base class cannot be created.
    • Discuss
    • 9. Which of the following statement is correct about the references?

    • Options
    • A. A reference must always be initialized within functions.
    • B. A reference must always be initialized outside all functions.
    • C. A reference must always be initialized.
    • D. Both A and C.
    • Discuss
    • 10. Which of the following statements is correct?

      1. Pointer to a reference and reference to a pointer both are valid.
      2. When we use reference, we are actually referring to a referent.

    • 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


    Comments

    There are no comments.

Enter a new Comment