Answer Posted / manish kumar
dynamic polymorphism is run time polymorphism.it is
implemented through virtual functions
| Is This Answer Correct ? | 101 Yes | 15 No |
Post New Answer View All Answers
What is abstraction and encapsulation?
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
write a C++ program for booking using constructor and destructor.
What is multilevel inheritance in oop?
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
What is and I oop mean?
INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
What is object in oop with example?
Can bst contain duplicates?
What is difference between polymorphism and inheritance?
String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?
What is oops in simple words?
What is polymorphism in oops with example?
What is encapsulation and abstraction? How are they implemented in C++?
What is difference between abstraction and encapsulation?