RE: Why we use OOPS concepts, What is its advantage
oops stands for object oriented programming.It supports abstraction encapsulation.The concepts of classes and objects hav made OOPS very unique.C++ java are eg of OOPS.Advantages1)Encapsulation-i.e Data hiding programmer can ensure that his code is not accessed.Access specifiers like protected private etc help the purpose2)inheritance-helps in code reusability]3)polymorphism]4)abstraction
RE: Why we use OOPS concepts, What is its advantage
OOPS is basically Object Oriented Programming. It is not only the the matter of Data Encapsulation & Data Hiding it also involves in Inheritance and Polymorphism. OOPS also makes a code neat and clean and readeable.