Select from following answers:- Function Overloading
- Function Overriding
- Operator Oveloading
- None of this.
- All Above
In Function Overloading,we have Same Function Name but Different Signature.
For ex:-
private void sum(int a, int b)
{
}
private void sum(int a, int b, int c)
{
}
Here,function name is same but parameters are different.
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator