What is polymorphism explain?
No Answer is Posted For this Question
Be the First to Post Answer
In multilevel inheritance constructors will be executed from the .... class to ... class
What is the difference between the C & C++?
How to reverse a sentence in c program ex: ram is a good boy answer: boy good a is ram
What is extreme programming?
What do you mean by inline function?
WHY FUCTION OVERLOADING DOSENOT RETURN A RETEN TYPE
How is polymorphism achieved?
Base class has two public data members. How can i derive a new class with one datamember as public and another data member as private?.
write a program in c++ to overload the function add (s1,s2) where s1 and s2 are integers and floating point values.
what is difference b/w object based and object oriented programming language?
18 Answers Chaitanya, College School Exams Tests, Educomp, IBM, Infosys, Telko,
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 oops