What is the difference between attribute and parameter and argument? And how does this works? ex:-
int a = 10;//attribute
method(int a);//argument or parameter
And if i pass a argument dynamically then whether it will be called parameter or argument. thanks.