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
How do I make sure that an object is released in code such as a connection or file object?
What is a ternary operator?
What is a try/ catch block?
Explain about the relationship between object oriented programming and databases?
What do you mean by operator overloading?
What is data encapsulation and what is its significance?
Name the different creational patterns in object oriented design?
What is bootstrap, extension and system class loader? Or can you explain primordial class loader?
Explain OOPS.
What is a functional interface? What is sam interface?
Whether static method can use nonstatic members?
What is polymorphism and abstraction?
Explain about a class?
What is the order of call of constructors in inheritiance?
What do you mean by virtual function and virtual classes?