Answer:
C. is the data passed into a parameter.
Step-by-step explanation:
From the list of given options, the answer that correctly answers the question is option C.
Literally, arguments are values passed into parameters in functions;
Take for instance, the following code snippet in python
def testcode(num):
print(num * 2)
digit = 4
testcode(digit)
In this example above;
The output is 8; and this is calculated by 4 * 2.
The parameter is num and the argument is the value that will be passed in num; This value (argument) is 4