+ 1
What are OOPs concepts ?
Why are OOPs important , how they different from ' C '
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");
+ 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.