What is meant by object oreiented programming language? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is meant by object oreiented programming language?

C++ is object oriented programming language and c is procedural oriented language but what does it mean?

20th May 2019, 7:40 AM
Alfiza
4 Answers
+ 2
object oriented programming language means a programming language that uses objects. And the objects have a life cycle. Creation > Manipulation > Destruction. Objects are typically created in classes, but there are some exceptions, for example JavaScript uses a structure, misleadingly called "objects", to create objects.
20th May 2019, 8:22 AM
Seb TheS
Seb TheS - avatar
+ 2
OOP is an approach to program organisation and development. In OOP emphasis is on data rather than procedure. Programs are divided into objects. The object-oriented features such as classes,function overloading,operator overloading are added in C++. This makes C++ an OOP language.
20th May 2019, 11:39 AM
Maaheynoor
Maaheynoor - avatar
+ 1
Thank you
20th May 2019, 9:10 AM
Alfiza