What is Java OOPS?

 OOPS CONCEPT

1.Encapsulation
2.Inheritance
3.Polymorphism 

Encapsulation
Encapsulation is the mechanism that binds together code and the data it manipulates, and
keeps both safe from outside interference and misuse.
Inheritance
Inheritance is the process by which one object acquires the properties of another object. This
is important because it supports the concept of hierarchical classification.
Polymorphism (from Greek, meaning “many forms”) is a feature that allows one interface to
be used for a general class of actions.