What are the OOPS concepts?
Answer Posted / hari
OBJECT
ENCAPSULATION
INHERITANCE
POLYMORPHISM
OVERRIDING
MESSAGE PASSING
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between a mixin and inheritance?
Explain the concepts involved in Object Oriented programming.
How oops is better than procedural?
What is encapsulation example?
What is encapsulation c#?
What are classes oop?
What is a superclass in oop?
How can you overcome the diamond problem in inheritance?
Templates mean
Why oops is important?
What are the benefits of oop?
What is the real time example of inheritance?
What is the difference between static polymorphism and dynamic polymorphism?
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
How does polymorphism work?