Answer Posted / supraja
Polymorphism is the feature that allows one interface to be
used for general class actions
Seperates Interface from Implementation
Creation of reusable code by programmers. Eg:
creation of object like driving car, which without knowing
multiple plugins like engine,car model, multiple forms will
be called in same way.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is a class loader?
What are the oops concept?
Can I map more than one table in a cmp?
What is a policy?
What are the pros and cons of detached objects?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
What is the difference between system.out ,system.err and system.in?
What are the diff types of exception?
What is the difference between a static and a non-static inner class?
Can we sent objects using Sockets?
Write a singleton program?
How to implement RMI in Java?
Have you used threads in Servelet?
Which container method is used to cause a container to be laid out and redisplayed?
What are transaction attributes?