What is polymorphism programming?
How do you achieve runtime polymorphism?
Whats is abstraction in oops?
Why is destructor used?
design class for linked list and include constructor,destructor,insert option. struct node { int node; struct node &ptr; }
What is the output of the following code: int v() { int m=0; return m++; } int main() { cout<<v(); } 1) 1 2) 0 3) Code cannot compile
Can you explain polymorphism?
what are the disadvantages of C++?
25 Answers ATS, Infosys, UNI, Wipro,
what is Class in oops with example?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
what is virtual function?
Difference between new operator and operator new
Can you inherit a private class?