logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming Functions See What Others Are Saying!
  • Question
  • 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.

  • Correct Answer
  • All arguments of an overloaded function can be default. 


  • More questions

    • 1. How many default constructors per class are possible?

    • Options
    • A. Only one
    • B. Two
    • C. Three
    • D. Unlimited
    • Discuss
    • 2. Which of the following function declaration is/are incorrect?

    • Options
    • A. int Sum(int a, int b = 2, int c = 3);
    • B. int Sum(int a = 5, int b);
    • C. int Sum(int a = 0, int b, int c = 3);
    • D. Both B and C are incorrect.
    • E. All are correct.
    • Discuss
    • 3. Which of the following statements is correct in C++?

    • Options
    • A. Classes cannot have data as protected members.
    • B. Structures can have functions as members.
    • C. Class members are public by default.
    • D. Structure members are private by default.
    • Discuss
    • 4. Which of the following is the correct way of declaring a function as constant?

    • Options
    • A. const int ShowData(void) { /* statements */ }
    • B. int const ShowData(void) { /* statements */ }
    • C. int ShowData(void) const { /* statements */ }
    • D. Both A and B
    • Discuss
    • 5. Which of the following statement is correct?

    • Options
    • A. An array of references is acceptable.
    • B. Once a reference variable has been defined to refer to a particular variable it can refer to any other variable.
    • C. An array of references is not acceptable.
    • D. Reference is like a structure.
    • Discuss
    • 6. Which of the following concepts provides facility of using object of one class inside another class?

    • Options
    • A. Encapsulation
    • B. Abstraction
    • C. Composition
    • D. Inheritance
    • Discuss
    • 7. Which of the following concepts means wrapping up of data and functions together?

    • Options
    • A. Abstraction
    • B. Encapsulation
    • C. Inheritance
    • D. Polymorphism
    • Discuss
    • 8. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      struct Tab
      {
          short n;
      };
      int main()
      {
          Tab b;
          Tab& rb = b;
          b.n = 5;
          cout << b.n << " " << rb.n << " ";
          rb.n = 8;
          cout << b.n << " " << rb.n;
          return 0; 
      }

    • Options
    • A. It will result in a compile time error.
    • B. The program will print the output 5 5 5 8.
    • C. The program will print the output 5 5 8 8.
    • D. The program will print the output 5 5 5 5.
    • Discuss
    • 9. 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
    • 10. 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


    Comments

    There are no comments.

Enter a new Comment