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
Which OOPS concept is used as a reuse mechanism?
Explain the rationale behind object oriented concepts?
Explain what is polymorphism?
How do you prevent a class from being inherited by another class?
What is a pure virtual function?
Why are virtual users created?
Does PowerShell support OOPs?
What are the features that are provided to make a program modular?
Explain the meaning of object in object oriented programming?
Can we reduce the visibility of the inherited or overridden method ?
What is the function of pure virtual functions?
What is constructor and virtual function? Can we call virtual funciton in a constructor?
What is a static method? Why do we need static methods in java 8 interfaces?
Explain about polymorphism?
Explain about a class in oop?