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
Define "Access specifiers" in java.
Which is the class in java?
What is classes in java?
Difference between a class and an object?
What is the purpose of encapsulation?
Who is the owner of java?
How does thread synchronization occurs inside a monitor? What levels of synchronization can you apply?
I don’t want my class to be inherited by any other class. What should I do?
What is the difference between jfc & wfc?
How do you insert a line break?
What is a data structure java?
Explain methods specific to list interface?
Explain about public and private access specifiers?
What are inbuilt functions in java?
How to convert string to char and vice versa?