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 |
difference between overloading and overridding
What are the benefits of interface?
what is polymorpsim? what are its types?
What do you mean by overloading?
Base class has two public data members. How can i derive a new class with one datamember as public and another data member as private?.
write a C++ program for booking using constructor and destructor.
Why multiple inheritance is not possible?
What Is a Polymorphism? How many types of polymorphism and whats that use in application?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
What is a function in oop?
what is the difference between class and structure in C++?
can you give the dynamic polymorphism types?