can u give some realtime example in ploymorphism? and
inheritance?

Answers were Sorted based on User's Feedback



can u give some realtime example in ploymorphism? and inheritance?..

Answer / mani

Human being life is the best example for ploymorphism bcoz
Let one take example
im a son of my parents and also brother of my sister and
the employee of one company ...
Im playing the many role here.
Same example for inheritance also bcoz i have inherited my
father property.

Is This Answer Correct ?    58 Yes 4 No

can u give some realtime example in ploymorphism? and inheritance?..

Answer / suresh

inheritance is hierarchy of class,that is one class derived
from another class

example:
grant father
--father
--son

polymorphism is the ability to take more than one form

example:
compile time polymorphism
--method overloading
people can act many role in the world
home:father
company:employee
run time polymorphism
--method overriding
dog is a class
It contains smile method

Is This Answer Correct ?    36 Yes 15 No

can u give some realtime example in ploymorphism? and inheritance?..

Answer / srinu

polymorphism: Polymorphism one form existing many forms is
called polymorphism.its used for over ridding.

EX:Man
Because A Man go to office he is an Employee.
A Man go to movie he is an auditor.
A man walk with his lover she's boy friend



inheritance is hierarchy of class,that is one class derived
from another class

EX:

grant father
--father
--son

Is This Answer Correct ?    19 Yes 8 No

can u give some realtime example in ploymorphism? and inheritance?..

Answer / walkinglegendteja

Inheritance is a concept which involves the concept of re
usability Ex:Bank Accounts-->SB Account,RD Account,CD Account
Polymorphism concept of one existing in many forms
Ex:In Graphical User interfaces,AWT

Is This Answer Correct ?    26 Yes 17 No

can u give some realtime example in ploymorphism? and inheritance?..

Answer / sai vamsi krishna

An Inheritance is to access the properties from super class to sub class.
example father to son sometmes the father has some diseases like sugar,BP those are attacking to son also.
poymorphism means many forms
example one person acts as many roles in his life a person works at company he is a employee at the same time he is a father of his son.

Is This Answer Correct ?    6 Yes 0 No

can u give some realtime example in ploymorphism? and inheritance?..

Answer / abdulrazak

abstract class Person
{
public String sname(){}
Address ad;
}
class Patient extends Person
{

}
class Employee extends Person
{
}
Here in the above example Person is a class acting two ways
one Patient details info and Employee details. We are
achieving this extends Person i.e inheritence.Inheritence
provides code reusability,extensibility

Is This Answer Correct ?    10 Yes 5 No

can u give some realtime example in ploymorphism? and inheritance?..

Answer / nazneen

Polymorphism applies to Overriding
Inheritance applies to Reusability of code defined earlier in one Class and later on used by Other Classes..

Is This Answer Correct ?    14 Yes 11 No

can u give some realtime example in ploymorphism? and inheritance?..

Answer / babu

Babu torati

METHOD OVERLOADING:Means suppose one man behaving different ways
suppose if is meet his wife he feels different if he meet his girl friend he feels differently means Based on person he meet his behavior will changes.


METHOD OVERRIDING:Means if father is gives some Properties to his son. ex:Bike but father says if you want to change this bike your wish otherwise continue with this bike(i.e no restriction) means gives permission throw the virtual keyword if you want change(override).

Is This Answer Correct ?    3 Yes 0 No

can u give some realtime example in ploymorphism? and inheritance?..

Answer / ashish rathore

Inheritence is a process by which object of one class aquire
the property of any object of another class. it provides the
idea of reusearility.
this means the ability to take more than one form from
existing class without modifying it.

Is This Answer Correct ?    5 Yes 3 No

can u give some realtime example in ploymorphism? and inheritance?..

Answer / dharmaraj

As i dont know these is correct answer but my knowledge is ok.

METHOD OVERLOADING: In one women got many children
(same method name but different parameter).

METHOD OVERRIDING: In women married in two different persons.
(one method two override the another method)

Is This Answer Correct ?    2 Yes 3 No

Post New Answer

More Servlets Interview Questions

How can we upload the file to the server using servlet?

0 Answers  


What is load-on-startup in servlet?

0 Answers  


How do we translate jsp?

0 Answers  


What are important features of Servlet 3?

0 Answers  


What is called servlet mapping?

0 Answers  






Explain the different ways for servlet authentication?

0 Answers  


What is the protocol used by Server & Client?

2 Answers  


Who is responsible for writing a constructor?

0 Answers  


Differentiate between the web server and application server?

0 Answers  


which type of data passing is used in realtime?

1 Answers  


What is the difference between the include() and forward() methods?

0 Answers  


What do you mean by default initialization in java servlet?

0 Answers  


Categories