Answer Posted / maheswaran
object oriented programming system
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
What is the difference between static polymorphism and dynamic polymorphism?
What is methods in oop?
Why is abstraction used?
Is abstract thinking intelligence?
What are functions in oop?
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 is the important feature of inheritance?
Why is destructor used?
What is the oops and benefits of oops programming?
Get me an image implementation program.
What is object in oop with example?
Explain the concepts involved in Object Oriented programming.
What are the benefits of polymorphism?
What is difference between multiple inheritance and multilevel inheritance?
Write a program to reverse a string using recursive function?