What are the OOPS concepts?
Answer Posted / gajanan malode
1 encapsulation - class
2 abstraction - object
3 inheritance
4 poymorphism - compile and run (static and dynamic binding)
5 message passinng
6 delegation
7 reusability
8 Interfaces
9 extensability
10 templates
11 scalability
12 associativity
13 persitence ......etc are OOPs Cocepts
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is abstraction encapsulation?
What is the types of inheritance?
write knight tour problem which is present in datastructure
What is constructor in oop?
Can static class have constructor?
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 exactly is polymorphism?
Which is better struts or spring?
What is the full form of oops?
#include
What is abstraction in oop with example?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What does no cap mean?
How can you overcome the diamond problem in inheritance?
Explain the concepts involved in Object Oriented programming.