can you give the dynamic polymorphism types?
Answer Posted / guest
staic polymorphism and dynamic
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
explain sub-type and sub class? atleast u have differ it into 4 points?
Give two or more real cenario of virtual function and vertual object
How do you use inheritance in unity?
What is class in oop with example?
What is byval and byref? What are differences between them?
What is encapsulation and abstraction? How are they implemented in C++?
Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
Can enum be null?
Why do we use inheritance?
Why do we use oop?
What is oops concept with example?
what is different between oops and c++
What is meant by oops concept?
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