what are actual and format paramaters of a method?
Answers
Answered by
1
formal parameter — the identifier used in a method to stand for the value that is passed into the method by a caller. actual parameter — the actual value that is passed into the method by a caller. For example, the 200 used when processDeposit is called is an actual parameter.
Answered by
0
The parameters used in the procedure/function definition are called the formal parameters. ... The parameters used in the procedure/function call are called the actual parametersformal parameter — the identifier used in a method to stand for the value that is passed into the method by a caller. actual parameter — the actual value that is passed into the method by a caller. For example, the 200 used when processDeposit is called is an actual parameter.
Similar questions