0
What is object oriented programming??
definition of OOPS
2 Antworten
+ 7
Object-oriented programming is a programming paradigm based on the concept of "objects", which may contain data, in the form of fields, often known as attributes; and code, in the form of procedures, often known as methods.
To get more:
https://en.m.wikipedia.org/wiki/Object-oriented_programming
0
"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."
Imagine objects being instances of classes that interact with one another. OOP is a paradigm of Programming, and is very complex if you are a beginner; but is the most used paradigm. OOP also includes: behaviours, attributes, and methods.