Answer:
Aporofobia : temor obsesivo a la pobreza y de gente pobre.
Answer:
A software where you can document letters, essays or anything really.
Explanation:
Answer:
Yes, the relation is a function
Domain = {-3,1,3,7}
Range = {7,3,1-1}
Explanation:
Given
{(-3,7),(1,3),(3,1),(7,-1)}
To determine if the relation is a function or not, we check if every output has only one corresponding input.
The output are (7,3,1-1) while the input are (-3,1,3,7)
-3 ----;> 7
1 -------> 3
3 -------> 1
7 -------> -1
It is a function since every output only has one corresponding input
To find the domain, we look at the set of input values
Domain = {-3,1,3,7}
To find the range, we look at the set of output values
Range = {7,3,1-1}
Answer:
HTTP
Explanation:
I hope it helps u.
Mark Me as brainlist answer
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: