Top OOPS Interview Questions & Answers
1. What is Method Signature and its use?
Let's consider the below method and try to get its method signature.
public int m1(int a , float b){
//do something
}
m1(int, float) is the method signature of the above method.
By this, we can say met...
riteshpanigrahi.hashnode.dev17 min read