Why do we use inheritance?
No Answer is Posted For this Question
Be the First to Post Answer
What is Hashing and how is it done? Pictorial form?
What is the difference between abstraction and polymorphism?
can inline function declare in private part of 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(); }
In OverLoading concept,Why they are not consider return value and why they are consider only parameters in method? For ex: public int Add(int a,int b){...} public String Add(int a,int b){...}
What are benefits of oop?
can we make a class static without using static keyword?
What is design patterns in C++?
What is interface in oop?
3. Differentiate verification and validation.
what is the difference between inter class and abstract class...?
what is abstract class ? when is used in real time ? give a exp