Answer:
=Average(Cell Range)
Explanation:
The function that is used to calculate the average value of a data set or the mean in Ms. Excel is;
AVERAGE function.
In the cell B20, Enter the function;
=Average
Then select the entire attendance for 2018 as the arguments of the function. Finally, press the enter key on your keyboard.
Answer:
A Repeater
Explanation:
A Repeater takes a signal, and then repeats it - in order to boost it.
Iteration is also the repetition of something, which sounds like what a repeater would do.
Answer:
int* calculate(int a,int b,int c){
int result[] = {0,0};
int sum = a+b+c;
int product = a*b*c;
result[0] = sum;
result[1] = product;
return result;
}
Explanation:
The function is a block of the statement which performs the special task.
The function can return one integer, not more than one integer.
If we want to return multiple values then, we can use array.
we store the result in the array and return that array to the main function.
This is the only possible way to return multiple values.
So, define the function with return type array and declare the array with zero value.
Then, calculate the values and store in the variable after that, assign to the array.
Finally, return that array.
Answer:
Maintenance Phase
Explanation:
One of the concepts employed in project management for describing stages involved when carrying out an information system development project is the systems development life cycle (SLDC). The cycle which starts from carrying out a feasibility study and ends in maintenance is a highly used conceptual model. There are 5 major stages or phase and they are the; Requirement Phase, Design Phase; Implementation Phase, Test Phase, and the Maintenance phase. The maintenance phase comes when testing has been complete and all enhancement and modifications have already been developed, and the system is operating.