A computer BIT is the amount of data that a CPU can manipulate at one time.
Answer:
#include<stdio.h>
#include<string.h>
int main() {
int n;
FILE *fp = fopen("salaries.txt", "r");
double sumSalaries = 0;
double quarterlySalary1, quarterlySalary2, quarterlySalary3, quarterlySalary4;
while(!feof(fp)) {
fscanf(fp, "%lf", &quarterlySalary1);
fscanf(fp, "%lf", &quarterlySalary2);
fscanf(fp, "%lf", &quarterlySalary3);
fscanf(fp, "%lf", &quarterlySalary4);
sumSalaries = sumSalaries + quarterlySalary1+quarterlySalary2+quarterlySalary3+quarterlySalary4;
printf("Salary Sum %lf: \n", sumSalaries);
printf("Income Type: ");
if(sumSalaries > 200000 ){
printf("h");
}
else if(sumSalaries >= 15000 && sumSalaries<=200000){
printf("m");
}
else{
printf("l");
}
printf("\n");
}
fclose(fp);
return 0;
}
Explanation:
Answer: The correct answer is "Extinction".
Explanation: It has been two years since any employee has received a bonus at Cloud9, and the possibility of getting one no longer seems to motivate employees. In this case, management has inadvertently applied <u>extinction.</u>
<u>Because no employee has received a bonus for a long time and as time goes by they forget about this, and lose motivation about getting one, the administration gradually extinguished the possibility of workers receiving a bonus.</u>