Asked by Roger

Review Questions and Excercises
Fill-in-the-Blank
1. A(n) _________ is information that is being passed to a function.

Answers

Answered by Steve
argument

arguments are supplied by the caller

parameters are used when defining the function

so, f(x) = x*5 -- x is the parameter

y = f(4) -- 4 is the argument
y = f(sin(pi)) -- sin(pi) is the argument
Answered by Roger
Thank you Steve I really appreciate your help.
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions