Difference ways of Polymorphism?
Answers were Sorted based on User's Feedback
Answer / zeeshan
Polymorphism can be achieved by two ways:
1.Overloading 2.Overriding
1.Overloading: Overloading means methods have same name but
different arguments it can be achieved at Compile Time.
1.Overriding: Overloading means when we make method virtual
in base class and we also want that it also used in child
then we use override keyword for that method and and it can
be achieved at Run Time.
| Is This Answer Correct ? | 21 Yes | 1 No |
Answer / siva sankari
lets take some eg:
6+3=9 //here '+'operator used as addition
siva+sankari=sivasankari //here '+' operator used as
concatenation
the same function which acts as diff place in diff meaning
is called polymorphism............
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sanjeevkumar.v
polymorphism it means the function may be different . and so
that are different forms
| Is This Answer Correct ? | 2 Yes | 9 No |
What is overriding vs overloading?
hi, this is raju,iam studying b.tech 2nd year,iam want know about group1 and group2 details, and we can studying without going to any instutions? please help me.
Can you name some types of inheritance?
What is coupling in oop?
Describe the difference between a Thread and a Process?
How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction
Why we use classes in oop?
Program to check whether a word starts with a capital letter or not.
How is polymorphism achieved?
WHAT IS THE DIFFERENCE BETWEEN OBJECT BASED & OBJECT ORIENTD PROGRAMMING LANGUAGE.(GIVE AT LIST 4 PIONT)
What is virtual function?where and when is it used?
What is a scope operator and tell me its functionality?