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
Why is multithreading important?
Is simpledateformat safe to use in the multithreaded program?
Explain what are final variable in java?
What are the special characters?
Is an integer an object?
What are the limitations of procedural programming approach?
What does system out println () do?
what is encapsulation in java? Explain
What is contractor means and methods?
How do you remove an element from an arraylist in java?
How do you create an array in java?
Explain the difference between extends thread vs implements runnable in java?
Explain about anonymous inner classes ?
What is the use of arrays tostring () in java?
Is Constructor possible in abstract class in java ?