When verbally talking about methods, I\'m never sure whether to use the word argument or parameter or something else. Either way the other people know what
Parameters are the variables received by a function.Hence they are visible in function declaration.They contain the variable name with their data type. Arguments are actual values which are passed to another function. thats why we can see them in function call. They are just values without their datatype