Answer Posted / geetha
speicfying access modifier, return type, method name,
arguments are called method signature
eg:
public void add(int a,int b)---method signature of the
method
public void add(int a,int b)
{
return (a+b);
}
correct me if i am wrong.
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
What is bubble sort in java?
What is string example?
How to avoid memory leak in java?
How do you find the maximum number from an array without comparing and sorting?
What is difference between protected and private?
How do you start a new line in java?
In how many ways we can create threads in java?
What is a null point?
Can we have a try block without catch block?
Difference between static synchronization vs. Instance synchronization?
What is meant by class?
Can we initialize the final blank variable?
What is difference between equal and == in java?
What is the difference between replace and replace all?
What are the three types of design patterns?