what is difference between class template and template class?
No Answer is Posted For this Question
Be the First to Post Answer
What is overriding in oops?
Can we call a base class method without creating instance?
What is oops in programming?
what is the realstic modeling?
What is Iteration Hierarchy? What is what is Object behavioral concept?
Why we use classes in oop?
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)
What is the oops and benefits of oops programming?
Why a "operator=(...)" when there is a copy ctor?
What do you mean by public, private, protected and friendly?
What are the 3 principles of oop?
Is following functions are said to be overloaded? int add(int a,int b) char *add(int a,int b)