What are concepts of OOPS and how are they implemented in
Java?
Answer Posted / tarangini
oops concepts are Encapsulation, inheritance, abstractio
and polymorphism.
Encapsulation: Buildingup of the data and methods as a
single unit is called encapsulation. It isolates the
members of one class from the members of another class, so
we can declare same variable in both the classes.
best example for encapsulation is: A Class
Inheritance: Producing the new classes from already
existing class is called inheritance. The newly produced
class contains the features of old class and it has its own
features.
the use of inheritance is reusability.
Abstraction: Hiding unnecessary data from the user is
called Abstraction.
Polymorphism: Poly means many. Morphism means forms.
If same object perfrom different tasks is called
polymorphism.
Is This Answer Correct ? | 15 Yes | 0 No |
Post New Answer View All Answers
Explain about main thread in java?
What is a boolean used for?
What does percent mean in java?
What is an eror in java?
What is meant by object oriented programming – oop?
Is main a keyword in java?
Can list have duplicates in java?
What are the advantages of passing this into a method instead of the current class object itself?
What is a list in java?
What do you meant by active and passive objects?
How does map works in java?
Is set sorted in java?
What are the four corner stones of oop?
What is covariant return type?
If we don’t want some of the fields not to serialize how to do that?