Difference between an argument and a parameter?

Answers were Sorted based on User's Feedback



Difference between an argument and a parameter?..

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

Difference between an argument and a parameter?..

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

Difference between an argument and a parameter?..

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

Difference between an argument and a parameter?..

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

Difference between an argument and a parameter?..

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

Difference between an argument and a parameter?..

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

Difference between an argument and a parameter?..

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

Difference between an argument and a parameter?..

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

Difference between an argument and a parameter?..

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

Difference between an argument and a parameter?..

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

Post New Answer

More Core Java Interview Questions

What do u mean by method and also contructer in java ?

3 Answers  


What is a parameter in a function?

0 Answers  


In which language java is written?

0 Answers  


Question 6 [9] 6.1 In what situations (in general) would you use a TreeMap? (3) 6.2 In what situations (in general) would you use a HashSet to store a collection of values?

1 Answers  


What are data structures in java?

0 Answers  


wht is customised exception?

1 Answers   Logica CMG, Novell, Prudential,


What is the integer of 16?

0 Answers  


can you program for reverse string?

7 Answers   IBM,


What is the purpose of the finally clause of a try-catch-finally statement in java programming?

0 Answers  


If a multi threaded Java program has started numerous number of threads, at any point in time how to know which thread is currently executing/running ?

7 Answers   Accenture, College School Exams Tests, iFlex, NIIT,


Can you give few examples of final classes defined in java api?

0 Answers  


How do I stop concurrentmodificationexception?

0 Answers  


Categories