QA'S approach 2 Java - OOPS concepts
OOPS concepts in Java OOPS is about developing an application around its data, i.e. objects which provides the access to their properties and the possible operations in their own way. Experts in Software Programming thought of combining the Data and Operations. Therefore, the birth of Object Oriented Programming which is commonly called OOPS. Manipulating the objects to get results is the goal of Object Oriented Programming. Features of OOP is 1)Object 2)Class 3)Encapsulation 4)Inheritance 5)Abstraction 6)Polymorphism 7)Exception Handling 8)Message Parsing These features neither belongs to java nor to any other language. These are global features. Any language can adopt these features to become OOPL. Object : A real world entity/substance is called Object Object is having 3 things 1) Identity / name 2) Properties / variables 3) functionality / methods Objects will participate in the process of communication using functionality(methods). In the...