Answer:
Reveal formating- A
Clear formatting-B
Apply formatting of the surrounding text-D
Format painter-C
Explanation:
I think the answer to this is A
Indicates the background color of the web page.
This is a lot, but here goes!
1. C
2. D
3. B
4. A
5. D
6. B
7. D (these are technically peripherals or input devices.)
8. C
9. A
10. B
11. A
12. D
13. B
Just as a note, spyware is malware.
Answer:
Written in C
#include <stdio.h>
int main() {
float salary;
printf("Salary: ");
scanf("%f", &salary);
float HRA, DA;
if(salary <= 10000){
HRA = 0.20; DA = 0.80;
}
else if(salary >= 10000 && salary <= 20000){
HRA = 0.25; DA = 0.90;
}
else{
HRA = 0.30; DA = 0.95;
}
salary = salary + salary * HRA + salary * DA;
printf("Gross Salary: %.2f\n", salary);
return 0;
}
Explanation:
I've added the full program as an attachment where I used comments as explanation