Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is mean by method signature?

Answers were Sorted based on User's Feedback



what is mean by method signature?..

Answer / priya

speicfying access modifier, method name,
arguments are called method signature only
if the return type differnent then also both are called as
same signatured if am not mistaken

Is This Answer Correct ?    7 Yes 0 No

what is mean by method signature?..

Answer / yogesh gandhi

Yes priya, you are right

Return type is not a part of the method signature.

Is This Answer Correct ?    4 Yes 0 No

what is mean by method signature?..

Answer / vijayakumar chinnasamy

Method signature means name of the method ,type of argument
and order of arguments.

The "return type" of method and "access specifier" are not
part of method signature.

Is This Answer Correct ?    3 Yes 0 No

what is mean by method signature?..

Answer / umesh

It means no. of arguments, type of argument ,order of data
type.

Is This Answer Correct ?    2 Yes 0 No

what is mean by method signature?..

Answer / shreya

The only required elements of a method declaration are the
method's return type, name, a pair of parentheses, (), and
a body between braces, {}.

Is This Answer Correct ?    0 Yes 0 No

what is mean by method signature?..

Answer / shreshta

Method signature: void name();
declaring method but not declaring the body of method

Is This Answer Correct ?    0 Yes 0 No

what is mean by method signature?..

Answer / 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

what is mean by method signature?..

Answer / ravi

any one tell the answer

Is This Answer Correct ?    1 Yes 10 No

Post New Answer

More Core Java Interview Questions

Can a static method be overridden in java?

0 Answers  


How does Vector implement synchronization?

4 Answers   Ness Technologies,


What is "finally" keyword?

10 Answers  


What is string buffer?

0 Answers  


Define an applet in java?

0 Answers  


What is lifetime variable?

0 Answers  


What class allows you to read objects directly from a stream?

0 Answers  


Define package in Java.

1 Answers  


Explain method local inner classes ?

0 Answers  


What is public static void main?

0 Answers  


I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }

4 Answers   Cap Gemini,


whats the life cycle of jsp

15 Answers   Satyam,


Categories