+ 1
What are OOPs concepts ?
Why are OOPs important , how they different from ' C '
3 Respuestas
+ 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");
+ 4
This might help you 👇
https://practice.geeksforgeeks.org/problems/oops-vs-c
Java (OOPS) Vs C | Practice | GeeksforGeeks
+ 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.