logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming OOPS Concepts See What Others Are Saying!
  • Question
  • Which of the following is not a type of constructor?


  • Options
  • A. Copy constructor
  • B. Friend constructor
  • C. Default constructor
  • D. Parameterized constructor

  • Correct Answer
  • Friend constructor 


  • More questions

    • 1. Which of the following is not a type of inheritance?

    • Options
    • A. Multiple
    • B. Multilevel
    • C. Distributive
    • D. Hierarchical
    • Discuss
    • 2. What will be the output of the following program?
      #include<iostream.h>
      class CuriousTabBase
      {   
          public:
          CuriousTabBase()
          {
              cout<< "Base OK. "; 
          }
      };
      class CuriousTabDerived: public CuriousTabBase
      {
          public:
          CuriousTabDerived()
          { 
              cout<< "Derived OK. "; 
          }
          ~CuriousTabDerived()
          { 
              cout<< "Derived DEL. "; 
          }
      };
      int main()
      {
          CuriousTabBase    objB;
          CuriousTabDerived objD;
          objD.~CuriousTabDerived();
          return 0;
      }

    • Options
    • A. Base OK. Derived OK. Derived DEL.
    • B. Base OK. Base OK. Derived OK. Derived DEL.
    • C. Base OK. Derived OK. Derived DEL. Derived DEL.
    • D. Base OK. Base OK. Derived OK. Derived DEL. Derived DEL.
    • E. The program will report compile time error.
    • Discuss
    • 3. Which of the following operators cannot be overloaded?

    • Options
    • A. []
    • B. ->
    • C. ?:
    • D. *
    • Discuss
    • 4. Which of the following cannot be friend?

    • Options
    • A. Function
    • B. Class
    • C. Object
    • D. Operator function
    • Discuss
    • 5. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      class CuriousTab
      {
          int x, y; 
          public:
          void SetValue(int &a, int &b)
          {
              a = 100;
              x = a;
              y = b;
              Display();
          }
          void Display()
          {
              cout<< x << " " << y; 
          }
      };
      int main()
      {
          int x = 10;
          CuriousTab objCuriousTab;
          objCuriousTab.SetValue(x, x);
          return 0;
      }

    • Options
    • A. The program will print the output 100 10.
    • B. The program will print the output 100 100.
    • C. The program will print the output 100 garbage.
    • D. The program will print two garbage values.
    • E. It will result in a compile time error.
    • Discuss
    • 6. What will be the output of the following program?
      #include<iostream.h> 
      struct CuriousTabArray
      {
          int arr[5]; 
          public:
          void CuriousTabFunction();
          void Display();
      };
      void CuriousTabArray::CuriousTabFunction()
      {
          static int i = 0, j = 4; 
          i++;
          j--;
          if(j > 0)
              CuriousTabFunction(); 
          int tmp = arr[i]; 
          arr[i]  = arr[j]; 
          arr[j]  = tmp; 
          i--;
          j++;
      }
      void CuriousTabArray::Display()
      {
          for(int i = 0; i < 5; i++)
              cout<< arr[i] << " ";
      } 
      int main()
      {
          CuriousTabArray objArr = {{5, 6, 3, 9, 0}};
          objArr.CuriousTabFunction();
          objArr.Display();
          return 0; 
      }

    • Options
    • A. 5 6 3 9 0
    • B. 0 9 3 6 5
    • C. 0 5 6 3 9
    • D. 0 6 3 9 5
    • E. None of these
    • Discuss
    • 7. What will be the output of the following program?
      #include<iostream.h> 
      class CuriousTab
      {
          public: 
          int x, y;
          CuriousTab(int xx = 10, int yy = 20)
          {
              x = xx;
              y = yy; 
          }
          void Exchange(int *, int *);
      };
      int main()
      {
          CuriousTab objA(30, 40); 
          CuriousTab objB(50); 
          objA.Exchange(&objA.x, &objB.y); 
          cout<< objA.x << " " << objB.y << endl; 
          return 0;
      }
      void CuriousTab::Exchange(int *x, int *y)
      {
          int t;
          t  = *x;
          *x = *y;
          *y = t ; 
      }

    • Options
    • A. 20 10
    • B. 30 20
    • C. 20 30
    • D. 30 40
    • E. 50 30
    • Discuss
    • 8. Which of the following statement is correct about the program given below?
      #include<iostream.h>
      const double CuriousTabConstant(const int, const int = 0);
      int main()
      {
          const int c = 2 ;
          cout<< CuriousTabConstant(c, 10)<< " "; 
          cout<< CuriousTabConstant(c, 20)<< endl; 
          return 0;
      }
      const double CuriousTabConstant(const int x, const int y)
      {
          return( (y + (y * x) * x % y) * 0.2);
      }

    • Options
    • A. The program will print the output 2 4.
    • B. The program will print the output 20 40.
    • C. The program will print the output 10 20.
    • D. The program will print the output 20 4.50.
    • E. The program will report compile time error.
    • Discuss
    • 9. Which of the following is the correct class of the object cout?

    • Options
    • A. iostream
    • B. istream
    • C. ostream
    • D. ifstream
    • Discuss
    • 10. Which of the following statements regarding inline functions is correct?

    • Options
    • A. It speeds up execution.
    • B. It slows down execution.
    • C. It increases the code size.
    • D. Both A and C.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment