What is sub classing in c++?
Answer / ashok kumar
which class inherited from base class is called sub class
| Is This Answer Correct ? | 3 Yes | 0 No |
What is the Advantage of Interface over the Inheritance in OOPS?
what is the difference between javap and jad utility
What is abstract class in oops?
design class for linked list and include constructor,destructor,insert option. node of form struct node { int data; struct node &ptr; }
How is the using() pattern useful? What is IDisposable? How does it support deterministic finalization?
How long to learn object oriented programming?
What is the diamond problem in inheritance?
string is a class or data type in java?
What are benefits of oop?
me get an assignent n its question is this 1.creat a set as in math i.ea={1,2} 2.insert element in it3. delete element don,t repeat any element 4.union 5. intersection of two sets plz help me i always pray for u n send me at ayeshawzd@hotmail.com f u have c++ how to program 5th addition then it is the 10.9 question in 10th chapter exercise
What is oop in simple words?
for example A,B,C,D are class all the 4 class contain one method who() but the method who() implementaion is differnet among each class. the relation among the 4 class are A is base class and is inherited by B and C.and from this two B and C where D is inherited. the question is i want to display the output who() method in all the classes(A,B,C,D)the output of who() method is diferrent amond all the class(A,B,C,D) ------A------ virtuval who(print a) override | | who(print b) B C override who(print c) | | -------D------ override who(print d)