What do you mean by Oops concept?


OOPs concept

OOP stands for Object-Oriented Programming.

In procedural programming we are writing procedures or functions that perform operations on the data, while object-oriented programming we are creating objects that contain both data and functions.

Object-oriented programming has several advantages over procedural programming as follows:

Object-oriented programming is faster, easier to execute and provides a clear structure for the programs.

It helps to keep the C++ or JAVA code DRY "Don't Repeat Yourself".

OOP makes it possible to create full reusable applications with less code that helps to shorter development time, easier to maintain, modify and debug.

👈       👉