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.
Answer:
see explaination
Explanation:
Please kindly check attachment for the step by step solution of the given problem
Answer:
"The employee pay rate is normal" is the correct answer for the above question.
Explanation:
- The above question code is written in the c++ language, in which there is one variable of bool type whose value is true.
- And this variable is also tested in the if-condition which gives the true and the if-body will be executed.
- Then the internal if-condition will give the false result because the value of the empsalary is not less than 45000. It is because the above statement "empsalary=45000" will assign the value 45000 on the empsalary variable.
- Then the else block will be executed which prints "the employee pay rate is normal".