void increment(int a)
{
a+=2
}
void assign(int a)
{
a=a+2
}
In which of the parameter passing technique a call to increment(b) will have a different effect from a call to assign(b)
1) call by value 2) call by value result 3) call by reference 4) call by name