What is meant by the word polymorphism?
Types
Forms
Functions
Process
Which of the following supports object oriented programming?
Data overloading
Constructor overloading
Operator overloading
Function overloading
What does the overload function in C++ means?
A group of function with the same name
All have the same number and type of argument
Functions with same name and same number and same type of argument
All of the above
Which of the following concept of OOPS refers to the term operator overloading?
Inheritance
Message passing
Encapsulation
Polymorphism
Which of the following statement is correct about function overloading?
Do not use the same function name for two unrelated function
Overloading principle applies not only to functions, but to operators too
It makes code much more readable
Perform different operations on the same operands.
Which overloaded function is permitted for user defined data types?
Destructor overloading
Which function is used to concatenate strings?
Main()
str()
strcat()
strcpy()
Which of the following operator cannot be overloaded?
Scope resolution operator
Arrow operator
Assignment operator
Equality operator
What are overloaded functions?
Very long functions that can hardly run
One function containing another one or more functions inside it.
Two or more functions with the same name but different number of parameters or type.
Function with more than one form
Which OOP concept has an object with many forms?
Scalability