What is the difference between parameters and arguments ?
Answers were Sorted based on User's Feedback
Answer / shadow
While defining method, variables passed in the method are
called parameters. While using those methods, values passed
to those variables are called arguments.....!
$HADOW
| Is This Answer Correct ? | 17 Yes | 1 No |
Answer / sadikhasan palsaniya
when defining a method like
public static void show(int a,int b){}
here variable a and b is parameter.
public static void main(String...string){
show(10,20);
}
here 10 and 20 is argument for show method.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is treeset and treemap in java?
What is floating data type?
What is string in java?
What happens if we override private method?
How to print nodes of a Binary tree?
What is an infinite loop in java? Explain with an example.
What is the use of static class?
Is there any tag in htm to upload and download files?
What is array class in java?
Why to give the file name same as the public class name in java?
What is thin driver and thick driver. why it is called so?
To the class members how can we provide security?