Why does the function arguments are called as "signatures"?
Answer Posted / padma
In the dynamic polymorphism the control has to distinguish
each function from other functions which has the same
function name.With the help of each method or function
arguments the control executes the function call,whenever it
is made.Each function call will be executed based on the
arguments passed.This is the reason, each function name
including the parameters or arguments has it own identity,
and this identification for the function is called
signature.Based on the signature, the control jumps from one
function to another in run time of the program.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain about the design phase?
Can you define OOP and principles of OOP?
Does a class inherit the constructor of its super class?
What is the difference between function overloading and over riding?
Can we reduce the visibility of the inherited or overridden method ?
Why are virtual users created?
What do you mean by polymorphism?
How many methods do u implement if implement the serializable interface?
What is the benefit of Composition over Inheritance?
Whether static method can use nonstatic members?
What is Overloading ? Is it similar to overriding ?
What is a functional interface? What is sam interface?
What does the “abstract” keyword mean in front of a method? A class?
what are the different ways for a method to be overloaded?
Explain about polymorphism?