Answer Posted / arun
Bjarne stoustrup
| Is This Answer Correct ? | 61 Yes | 7 No |
Post New Answer View All Answers
What is abstract class in oops?
What is interface in oop?
Why do pointers exist?
What are the two different types of polymorphism?
Why is oop better than procedural?
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 overloading and its types?
Why do we use polymorphism?
What are the advantages of polymorphism?
Why is abstraction used?
What is purpose of inheritance?
What is the significance of classes 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 abstraction in oop with example?
How Do you Code Composition and Aggregation in C++ ?