What are the OOPS concepts?
Answer Posted / irfan jafree
oops concepts means to provide security of our data.
oops concepts are following ways:
Encapsulation: wrapping up of data and member function
together into a single unit class.
Abstraction: Showing essential feature without background
detail.
Inheritance: The property of one class inherited property
of other class.
Polymorphism: it means many form .They are two forms as:
Operator overloading and Function overloading.
| Is This Answer Correct ? | 95 Yes | 52 No |
Post New Answer View All Answers
What is meant by multiple inheritance?
Why do we need oop?
What does <> mean pseudocode?
What does and I oop mean in text?
How to improve object oriented design skills?
Give two or more real cenario of virtual function and vertual object
What is the difference between abstraction and polymorphism?
What is destructor example?
Can bst contain duplicates?
What is the real time example of encapsulation?
Can you inherit a private class?
What are the three parts of a simple empty class?
Why interface is used?
What is oops with example?
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer