What are OOPs concepts ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What are OOPs concepts ?

Why are OOPs important , how they different from ' C '

26th Jul 2019, 7:24 PM
dcodr
dcodr - avatar
3 Answers
+ 5
typeof OOPS == "object" OOPS.isEasy();//true let you = Vijay+Ratan+Singh :again: you.takeIt(Easy); if(you.understand.OOPS){ you.r.OOPS.easy==true; }else{ goto :again: } printer.print.inPaper("Hurrah! OOPs made it easy");
26th Jul 2019, 8:43 PM
Sarthak
Sarthak - avatar
+ 4
This might help you 👇 https://practice.geeksforgeeks.org/problems/oops-vs-c Java (OOPS) Vs C | Practice | GeeksforGeeks
26th Jul 2019, 7:46 PM
KingDaniel2004
KingDaniel2004 - avatar
+ 2
👉Classes and Objects 👉Data Abstraction and Encapsulation 👉Inheritance 👉Polymorphism These are the main features of OOPs. C language does not contain OOP features, it's a structural language. OOPs are important because the helps to make programs that can be related to the real world entities using objects and classes. And different classes can be related through inheritance like the real world entities are related to each other.
26th Jul 2019, 7:40 PM
Amal P Franglin
Amal P Franglin - avatar