Oops Concepts
Oops concepts with Real-world examples OOPS: Object-oriented programming is a programming paradiagm based on the concept of "Objects", which can contain data, in the form of fileds, and code, in the form of procedures. Oops Concepts: Abstraction Encapsulation Inheritance Polymorphism Abstraction: Data Abstraction is the property by virtue of which only the essential details are displayed to the user.The trivial or the non-essentials units are not displayed to the user. Eg: A car is viewed as a car rather than its individual components. Another Example is when you use the remote control of your TV, you do not bother about how pressing a key in the remote changes the channel on the TV. You just know that pressing the + volume button will increase the volume. Encapsulation: Encapsulation is Infor...
