<h2>Million instructions per second (MIPS)</h2>
Explanation:
Real-life example of measurement:
Like how we measures vegetables & fruits in Kilograms, how we measure water or other liquids in liters, we measure the processing power of a computer with the help of unit called MIPS.
What is processing power?
The number of instruction that a computer can process in one second helps us to calculate the "speed of the computer".
This can also be termed as measuring the clock speed. Its measured in Giga hertz or mega hertz.
Why this is necessary?
- It is to pick the best system to buy. (Also considering the need an budget)
- Purchasing system based on the requirement.
Answer:
A computer OPERATING SYSTEM is a system software that manages computer hardware, software resources, and provides common services for computer programs.
Explanation:
A. hub
I can't think of a good reason to use a hub anymore, I always use a switch instead.
Answer:
D, if the debtor fails the means test
Explanation:
i took the test on platos and got it right
Answer:
Following are the code in c language
#include <stdio.h> // header file
int main() // main function
{
int n1,i;
float avg,x,s=0; // variable declaration
printf("\nEnter How many Number terms you want:");
scanf("%d",&n1); // input terms by user
for(i=0;i<n1;++i)
{
scanf("%f",&x); // user input
s= s +x; //calculate sum
}
avg = s/n1;// calculate average of n number
printf("\nThe average of n number is:");
printf("%f",avg); // display average
return 0;
}
Output
Enter How many Number terms you want:3
3
4
3
The average of n number is:3.333333