oops concept is used for?
Answers were Sorted based on User's Feedback
Answer / yj
OOP concepts were introduced to overcome the limitations of POP(Procedure Oriented Programming). The first and foremost aim of OOP was to secure the data by encapsulating it in class and providing the only way to access them i.e., through functions which are in the same class.
Secondly, it reduces the complexity.
Thirdly, it reuses the code and hence uses memory efficiently.
There are 3 main OOP concepts :
1. Encapsulation.
2. Polymorphism.
3. Inheritance.
| Is This Answer Correct ? | 34 Yes | 1 No |
secureity as well as to increase the execution speed by
providing data and functions together with in an object
| Is This Answer Correct ? | 9 Yes | 8 No |
What is a scope resolution operator?
what does exactly the linker do?
What is abstraction and encapsulation?
What do you mean by inheritance?
Can destructor be overloaded?
What is the use of unnamed namespaces in OOPS? The only advantage I know is that they dont need the scope resolution operator while accessing them. I want to know some other advantages of unnamed namespaces...
What is debug class?what is trace class? What differences are between them? With examples.
What is the purpose of polymorphism?
What is abstraction?
Who invented oop?
Explain the advantages of inheritance.
What is polymorphism what is it for and how is it used?