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 |
Which package is always imported by default?
What are the standards to place package statement within a source code file?
What is return keyword in java?
Can we return null in java?
What happens if we don’t define serial version uid?
What is the life cycle of Servlet?
What is difference between hashset and hashmap in java?
Define canvas?
What is method Overloading in the perspective of OOPS?
What is difference between checked and unchecked exception in java?
What are the two main uses of volatile in Java?
Define how objects are stored in java?