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
properties
andbehaviors
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
actions
our object can take. - Like: talking, breathing, running etc
- Oftentimes, this involves using or modifying the properties of our object.
- Are the