Why is abstraction used?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between multiple inheritance and multilevel inheritance?
What are properties in oop?
//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(); }
what is object slicing
Name an advantage of array over linked list?
24 Answers GML, IBM, Software Solutions,
What is the point of polymorphism?
What is constructor overloading in oop?
How compiler selects(internally) required overridden function in inheritance?
2 Answers CSC, Infinite Computer Solutions,
What is an example of genetic polymorphism?
Write a program in c++ to read two floating point numbers and find their sum and average.
What is virtual Function.
What is cohesion in oop?