Answer Posted / k.senthil arasur sathyamangala
overloading:Two function have same name and same return type
but different type of arguments used.
overriding:Two function have same name and same arguments
used but that function defined in a base class redefined in
a derived class
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Can enum be null?
What is ambiguity in inheritance?
Why is there no multiple inheritance?
What are the important components of cohesion?
Where is pseudocode used?
How do you explain polymorphism?
Whats oop mean?
What is the example of polymorphism?
What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?
What are classes oop?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What is destructor oops?
explain sub-type and sub class? atleast u have differ it into 4 points?
What is inheritance write a program to show use of inheritance?
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?