Answer Posted / sanjeevkumar.v
different form of functions
| Is This Answer Correct ? | 3 Yes | 8 No |
Post New Answer View All Answers
Are polymorphisms mutations?
What is abstraction and encapsulation?
What is the difference between encapsulation and 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
What is the important feature of inheritance?
What is the point of polymorphism?
What is the difference between procedural programming and oops?
What are the types of abstraction?
Why do we use class?
What is pointer in oop?
class type to basic type conversion
What is advantage of inheritance?
Why do we use polymorphism?
Templates mean
How can you overcome the diamond problem in inheritance?