logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming Functions Comments

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


  • Functions problems


    Search Results


    • 1. Which of the following statement is correct?

    • Options
    • A. C++ enables to define functions that take constants as an argument.
    • B. We cannot change the argument of the function that that are declared as constant.
    • C. Both A and B.
    • D. We cannot use the constant while defining the function.
    • Discuss
    • 2. Which of the following statement is correct?

    • Options
    • A. Constructors can have default parameters.
    • B. Constructors cannot have default parameters.
    • C. Constructors cannot have more than one default parameter.
    • D. Constructors can have at most five default parameters.
    • Discuss
    • 3. Which of the following statement will be correct if the function has three arguments passed to it?

    • Options
    • A. The trailing argument will be the default argument.
    • B. The first argument will be the default argument.
    • C. The middle argument will be the default argument.
    • D. All the argument will be the default argument.
    • Discuss
    • 4. Which of the following statement is correct?

    • Options
    • A. Two functions having same number of argument, order and type of argument can be overloaded if both functions do not have any default argument.
    • B. Overloaded function must have default arguments.
    • C. Overloaded function must have default arguments starting from the left of argument list.
    • D. A function can be overloaded more than once.
    • Discuss
    • 5. Which of the following statement is correct?

    • Options
    • A. Only one parameter of a function can be a default parameter.
    • B. Minimum one parameter of a function must be a default parameter.
    • C. All the parameters of a function can be default parameters.
    • D. No parameter of a function can be default.
    • Discuss
    • 6. 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
    • 7. Where the default value of parameter have to be specified?

    • Options
    • A. Function call
    • B. Function definition
    • C. Function prototype
    • D. Both B or C
    • Discuss
    • 8. Which of the following function prototype is perfectly acceptable?

    • Options
    • A. int Function(int Tmp = Show());
    • B. float Function(int Tmp = Show(int, float));
    • C. Both A and B.
    • D. float = Show(int, float) Function(Tmp);
    • Discuss
    • 9. Which of the following function / types of function cannot have default parameters?

    • Options
    • A. Member function of class
    • B. main()
    • C. Member function of structure
    • D. Both B and C
    • Discuss
    • 10. Which of the following statements is correct about the constructors and destructors?

    • Options
    • A. Destructors can take arguments but constructors cannot.
    • B. Constructors can take arguments but destructors cannot.
    • C. Destructors can be overloaded but constructors cannot be overloaded.
    • D. Constructors and destructors can both return a value.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment