Answer:
Arguments
Step-by-step explanation:
When input is passed to a function, the input is referred to as an argument.
And the syntax is:
Function_Name(argument_1, argument_2...,argument_n)
I'll answer this question using the following instance:
The following instruction written in cell C3:
=SUM(C1,C2)
The above instruction in Excel adds up the content of cell C1 and C2, and the result is saved in C4.
If C1 = 2, C2 = 3
C3 will be:
![C3 = 2 + 3](https://img.qammunity.org/2022/formulas/computers-and-technology/college/pxwlmnuesejt5bfnx7znnlqi6xgnj9jz52.png)
![C3 = 5](https://img.qammunity.org/2022/formulas/computers-and-technology/college/zu0m99pv0pucxdeumitl13pui98rtezh7a.png)
Using:
Function_Name(argument_1, argument_2...,argument_n)
The arguments of =SUM(C1,C2) are C1 and C2.
Hence, the term that answers this question is: argument