1. OOPs, Concept
Object Oriented Programming- OOP is a specific way of designing a program by
using classes and objects - It allows us to relate program with real-world objects, like
propertiesandbehaviors Properties- It defines the
state of the object. - Like: name, age, address etc. that store data of the object
- It defines the
Behaviors- Are the
actionsour object can take. - Like: talking, breathing, running etc
- Oftentimes, this involves using or modifying the properties of our object.
- Are the