C++/OOPs Concepts
Expert: Prince M. Premnath - 9/26/2006
QuestionExplain the difference between Object based and Object orinted concepts of C++ with small program examples.
Answer In an object based system ,we can use the objects to accomplish our task and we cannot implement the special features of the oops ( say inheritance , polymorphism and so on..)
Eg : Visual Basic is a pure object based language , it allow one to use the objects , and you cannot implement the main advantage of the oops concepts .
In contrast a object oriented system allows you to declare class , allow you to inherit classes , polymorphim , etc..
Eg : C++
Thank You !