What is object oriented programming?
Answers
Answered by
2
Answer:
Object-oriented programming is a programming paradigm based on the concept of "objects", which can contain data, in the form of fields, and code, in the form of procedures. A feature of objects is an object's procedures that can access and often modify the data fields of the object with which they are associated.
Anonymous:
no more comments
Answered by
8
Object-oriented programming (OOP) refers to a type of computer programming (software design) in which programmers define not only the data type of a data structure, but also the types of operations (functions) that can be applied to the data structure.
There are four principles of OOP:
Polymorphism.
Abstraction.
Encapsulation.
Inheritance.
Similar questions