Answer:
Direct Subsidized Loans are based on financial need.
hope my ans helps
be sure to follow me
pls give brainlist to my answer
stay safe
have a good day
<span>The impact of the printing press with the impact of the internet is that </span>internet is an easy access compared with the printing press. Changes affect society, there are more ways to access info today through the internet. internet spreads information faster and can be shared quickly.
Answer:
Argument
Explanation:
The function is the block of the statement which performs the special task.
when we define the function in the program then we have to call that function.
the syntax for defining the function:
type name(parameter_1, parameter_2,...){
statement;
}
the syntax for calling the function:
name( argument_1, argument_2,...);
Meaning of parameter and argument
The argument is used to send the value into the function definition. this can be passed by value or pass by reference.
The parameter is used to receive the value send by calling function.
Therefore, the answer is the Argument.