logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming Functions See What Others Are Saying!
  • Question
  • Which of the following statement is incorrect?


  • Options
  • A. The default value for an argument can be a global constant.
  • B. The default arguments are given in the function prototype.
  • C. Compiler uses the prototype information to build a call, not the function definition.
  • D. The default arguments are given in the function prototype and should be repeated in the function definition.

  • Correct Answer
  • The default arguments are given in the function prototype and should be repeated in the function definition. 


  • More questions

    • 1. Which of the following statement is correct regarding destructor of base class?

    • Options
    • A. Destructor of base class should always be static.
    • B. Destructor of base class should always be virtual.
    • C. Destructor of base class should not be virtual.
    • D. Destructor of base class should always be private.
    • Discuss
    • 2. What happens when a class with parameterized constructors and having no default constructor is used in a program and we create an object that needs a zero-argument constructor?

    • Options
    • A. Compile-time error.
    • B. Preprocessing error.
    • C. Runtime error.
    • D. Runtime exception.
    • Discuss
    • 3. What happens if the base and derived class contains definition of a function with same prototype?

    • Options
    • A. Compiler reports an error on compilation.
    • B. Only base class function will get called irrespective of object.
    • C. Only derived class function will get called irrespective of object.
    • D. Base class object will call base class function and derived class object will call derived class function.
    • Discuss
    • 4. When are the Global objects destroyed?

    • Options
    • A. When the control comes out of the block in which they are being used.
    • B. When the program terminates.
    • C. When the control comes out of the function in which they are being used.
    • D. As soon as local objects die.
    • Discuss
    • 5. Which of the following is correct about the statements given below?

      1. All operators can be overloaded in C++.
      2. We can change the basic meaning of an operator in C++.

    • Options
    • A. Only I is true.
    • B. Both I and II are false.
    • C. Only II is true.
    • D. Both I and II are true.
    • Discuss
    • 6. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      class CuriousTab
      {
          int x; 
          public:
              CuriousTab()
              {
                 x = 0;
              }
              CuriousTab(int xx)
              {
                  x = xx; 
              }
              CuriousTab(CuriousTab &objB)
              {
                  x = objB.x; 
              }
              void Display()
              {
                  cout<< x << " ";
              }
      };
      int main()
      {
          CuriousTab objA(25);
          CuriousTab objB(objA);
          CuriousTab objC = objA;
          objA.Display();
          objB.Display();
          objC.Display();
          return 0; 
      }

    • Options
    • A. The program will print the output 25 25 25 .
    • B. The program will print the output 25 Garbage 25 .
    • C. The program will print the output Garbage 25 25 .
    • D. The program will report compile time error.
    • Discuss
    • 7. In which of the following a virtual call is resolved at the time of compilation?

    • Options
    • A. From inside the destructor.
    • B. From inside the constructor.
    • C. From inside the main().
    • D. Both A and B.
    • Discuss
    • 8. Which of the following statement is correct?

    • Options
    • A. Overloaded functions can have at most one default argument.
    • B. An overloaded function cannot have default argument.
    • C. All arguments of an overloaded function can be default.
    • D. A function if overloaded more than once cannot have default argument.
    • Discuss
    • 9. What will be the output of the following program?
      #include<iostream.h> 
      class Base
      {
          int x, y; 
          public:
          Base() 
          {
              x = y = 0; 
          } 
          Base(int xx)
          {
              x = xx;
          }
          Base(int p, int q = 10)
          {
              x = p + q;
              y = q; 
          } 
          void Display(void)
          {
              cout<< x << " " << y << endl;
          } 
      }objDefault(1, 1);
      
      class Derived: public Base
      {
          Base obj; 
          public:
          Derived(int xx, int yy): Base(xx, xx + 1)
          { }
          Derived(Base objB = objDefault)
          { } 
      }; 
      int main()
      {
          Derived objD(5, 3);
          Derived *ptrD = new Derived(objD);
          ptrD->Display();
          delete ptrD;
          return 0; 
      }

    • Options
    • A. 3 2
    • B. 8 3
    • C. 11 6
    • D. 11 10
    • E. The program will not compile successfully.
    • Discuss
    • 10. Which of the following statements is correct?

      1. We can return a global variable by reference.
      2. We cannot return a local variable by reference.

    • 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