Difference between an argument and a parameter?
Answers were Sorted based on User's Feedback
Answer / dev
The words argument and parameter are often used
interchangeably although the C++ Standard makes a clear
distinction between the two.
An argument is an expression in the comma-separated list in
a function call or the operand of a throw-statement
A parameter is an object or reference that is declared in a
function declaration or definition (or in the catch clause
of an exception handler);
This example demonstrates the difference between a
parameter and an argument:
void func(int n, Object obj); //n and obj are parameters
static void main(String s[])
{
Object p = new String("hi");
func(5, p); //5 and p are arguments
}
Is This Answer Correct ? | 155 Yes | 23 No |
Answer / janet
while defining method,variables passed in the method are
called parameters.while using those methods,values passed
to those variables are called arguments.
Is This Answer Correct ? | 133 Yes | 9 No |
Answer / dhawal
parameters are those that are passing to the method at the
time of defining the method but arguments are those which
are passed at the time of calling that method
Is This Answer Correct ? | 34 Yes | 4 No |
Answer / venkatesh
what ever we are passing in the method is called parameters
& whatever we are passing in method calling is called is
arguments
Is This Answer Correct ? | 39 Yes | 12 No |
Answer / roqaya nezar
suppose i have a method that i just defined, the variablse
i passed to this method are the parameters
but, when i use the defined method i will pass values to
its variables, now they are arguments.
Is This Answer Correct ? | 29 Yes | 8 No |
Answer / aditya
variables defined in the method eg: sum(int a ,int b)
here a and b are parameters which r variables.
the values passed to that variables r called arguments.
Is This Answer Correct ? | 22 Yes | 6 No |
Answer / pankaj kaundal
In the method and function declaring valiable with data type
is known as parameater it is a refrence type.
void sum(int x, int y)//is parameter
and when it call and passing value is known as argument
like
object o=new object();
o.sum(12,20);//it is argument
Is This Answer Correct ? | 19 Yes | 5 No |
Answer / venkat
while we are declaring method this parameters
ex: public void test(int a,int b)
{}= this is parameters
while we are passing values through object refernce this
arguments
ex: A a=new A();
a.test(5,5);=this is arguments
Is This Answer Correct ? | 16 Yes | 3 No |
Answer / sagar
Whenever we are define a method with objects or references or variables then that objects or references or variables are called as parameters.
Whenever we are calling using that method with their objects or references or variable values through that class object is called arguments
Example :
class abc
{
public void display(int a,int b,)//where a and b are parameters.
{
System.out.println("The values of passed arguments are: a="+a+"b="+b);
}
public static void main(String args[])
{
abc a=new abc();
a.display(400,500);//where 400,500 are arguments.
}
}
Is This Answer Correct ? | 11 Yes | 2 No |
Answer / rasool.sk
Whenever we are define a method with objects or references then that objects or references are called as parameters.
Whenever we are calling using that method with their objects or references values through that class object is called arguments
Is This Answer Correct ? | 7 Yes | 5 No |
Is void a data type in java?
What is the indent key?
What is the multi-catch block in java?
What is a class in java?
Is char a data type in java?
How do you square a number in java?
What is the use of singleton?
Explain the Propertie sof class?
What is exception hierarchy in java?
What is the difference between choice and list?
Why hashcode is used in java?
What are the basics of core java?