Answer Posted / uma sankar pradhan
we use virtual functions to achive dynamic binding
Dynamic binding is establishing relation between the
function call and function definition at run time
Is This Answer Correct ? | 22 Yes | 2 No |
Post New Answer View All Answers
Which is not an object oriented programming language?
What is static in oop?
Can static class have constructor?
Advantage and disadvantage of routing in telecom sector
IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?
write string class as your own class in java without using any built-in function
What is polymorphism programming?
What is property in oops?
What is the difference between a constructor and a destructor?
What is the purpose of enum?
What is inheritance and how many types of inheritance?
what is graphics
Can a varargs method be overloaded?
How do you explain 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