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 |
WHY FUCTION OVERLOADING DOSENOT RETURN A RETEN TYPE
• What are the desirable attributes for memory managment?
What are oops functions?
When a private constructer is being inherited from one class to another class and when the object is instantiated is the space reserved for this private variable in the memory??
Which is the only operator in C++ which can be overloaded but NOT inherited?
write a short note on Overloading of Binary Operator?
What is polymorphism give a real life example?
what is opps?why it is use in programming language?
The type of variable a pointer points to must be the part of pointer's definition so that:
why freind function takes more parameter than normal member function in c++?
Can enum be null?
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...