What is for loop and its syntax?
No Answer is Posted For this Question
Be the First to Post Answer
monkey starts climbing up a tree 20ft tall,each hour ,it hops 3ft and slips back by 2ft .how much time it wil tak to reach top of the tree?
Can private class be inherited?
Can a destructor be called directly?
Why do we use oops?
What is Object and Class? What are the differences between them?
what are the characteristics of oops?
to remove the repeated numbers from the given . i.e.., if the input is 12233 output should of 123
Why do we need polymorphism in c#?
Why it is called runtime polymorphism?
c++ is a purely oop concept?
what is the size of an empty class
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)