Intro to Computer Programming > Ch. 6.4: Sending Data into a Function > Flashcards
What is an argument/actual parameter?
Values sent into a function are called arguments.
What is a parameter/formal parameter/formal argument?
By using parameter, you can design your own functions that accept data this way. A parameter is a special variable that holds a value being passed into a function.