logo

CuriousTab

CuriousTab

Discussion


Home C++ Programming OOPS Concepts See What Others Are Saying!
  • Question
  • Which of the following correctly describes overloading of functions?


  • Options
  • A. Virtual polymorphism
  • B. Transient polymorphism
  • C. Ad-hoc polymorphism
  • D. Pseudo polymorphism

  • Correct Answer
  • Ad-hoc polymorphism 


  • More questions

    • 1. Which of the following statement is correct about the program given below?
      #include<iostream.h> 
      int CuriousTabFunction(int m)
      {
          m *= m;
          return((10)*(m /= m)); 
      }
      int main()
      {
          int c = 9, *d = &c, e;
          int &z = e;
          e = CuriousTabFunction(c-- % 3? ++*d :(*d *= *d));
          z = z + e / 10;
          cout<< c << " " << e;
          return 0;
      }

    • Options
    • A. It will result in a compile time error.
    • B. The program will print the output 64 9.
    • C. The program will print the output 64 10.
    • D. The program will print the output 64 11.
    • Discuss
    • 2. How many instances of an abstract class can be created?

    • Options
    • A. 1
    • B. 5
    • C. 13
    • D. 0
    • Discuss
    • 3. Which of the following keywords is used to control access to a class member?

    • Options
    • A. Default
    • B. Break
    • C. Protected
    • D. Asm
    • Discuss
    • 4. Which of the following also known as an instance of a class?

    • Options
    • A. Friend Functions
    • B. Object
    • C. Member Functions
    • D. Member Variables
    • Discuss
    • 5. Which of the following factors supports the statement that reusability is a desirable feature of a language?

    • Options
    • A. It decreases the testing time.
    • B. It lowers the maintenance cost.
    • C. It reduces the compilation time.
    • D. Both A and B.
    • Discuss
    • 6. How many times a constructor is called in the life-time of an object?

    • Options
    • A. Only once
    • B. Twice
    • C. Thrice
    • D. Depends on the way of creation of object
    • Discuss
    • 7. What will be the output of the following program?
      #include<iostream.h> 
      int main()
      {
          float Amount;
          float Calculate(float P = 5.0, int N = 2, float R = 2.0);
          Amount = Calculate(); 
          cout<< Amount << endl; 
          return 0;
      }
      
      float Calculate(float P, int N, float R)
      {
          int Year = 1;
          float Sum = 1 ;
          Sum = Sum * (1 + P * ++N * R);
          Year =  (int)(Year + Sum);
          return Year; 
      }

    • Options
    • A. 21
    • B. 22
    • C. 31
    • D. 32
    • E. None of these
    • Discuss
    • 8. Which of the following is an abstract data type?

    • Options
    • A. int
    • B. double
    • C. string
    • D. Class
    • Discuss
    • 9. Can a class have virtual destructor?

    • Options
    • A. Yes
    • B. No
    • Discuss
    • 10. Which of the following statement is correct?

    • Options
    • A. A referenced has to be de-referenced to access a value.
    • B. A referenced does not need to be de-referenced to access a value.
    • C. A referenced has to be double de-referenced to access a value.
    • D. Whether a reference should be de-referenced or not depends on the type of the reference.
    • Discuss


    Comments

    Avatar
    Jamays Moritz
    wow i really enjoyed the quizzes and would always look for it. Thanks


Enter a new Comment