69.6k views
3 votes
An argument is different from a parameter in that an argument

refers to a piece of data to be supplied.
is a placeholder for a constant value.
is the data passed into a parameter.
O is always variable.​

User Samps
by
4.8k points

2 Answers

1 vote

Answer:

It is C

Step-by-step explanation:

got it right on edge

User Max Leske
by
4.5k points
2 votes

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

User Dunston
by
4.2k points