What is the difference between static polymorphism and dynamic polymorphism?
No Answer is Posted For this Question
Be the First to Post Answer
what is main difference between object oriented object base
What is encapsulation process?
what is diff between .net 1.1 and .net 2.0
What is encapsulation oop?
function overridind means and simple program
WHAT IS ABSTRUCT DATA TYPE ? PLEASE EXPLAIN IT.
What is difference between function overloading and overriding?
What is multiple inheritance? Give Example
why function overloading is not called as pure polymorphism?
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 wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }
Why is abstraction needed?