Answer Posted / naren
Polymorphism means ability to take more than one form.
There are two types of polymorphism
1.Method Overloading(compile time polymorphism)
2.Method Overriding(run-time polymorphism)
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is difference between inheritance and polymorphism?
How to use CMutex, CSemaphore in VC++ MFC
What is an example of genetic polymorphism?
What is encapsulation and abstraction? How are they implemented in C++?
How do you achieve polymorphism?
State what is encapsulation and friend function?
What is object-oriented programming? Webopedia definition
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
Why oops is important?
Write a program to sort the number with different sorts in one program ??
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
Can we define a class within the interface?
What is an advantage of polymorphism?
What does enum stand for?
What is destructor in oop?