Answer:
disk caching
Explanation:
Hi,
Magnetic hard drives use disk caching to speed up performance. This method is quite ingenious because what it does is that in a section of memory in your pc, it keeps a copy of information that was previously accessed in the hard disk. So, next time if the same data is requested, the system can refer to cache to get quick access rather than going to the hard disk (which is slower).
Explanation:
There are various basic computer programming languages and one of them is the C language, the base of many computer lanuages.
The code of finding factorial is written below;
CODE
#include<stdio.h>
int main (void)
{
int i,
int factorial =1,
int input;
printf("Enter a number for finding its factorial: ");
scanf("%d",&input);
if (input == 0)
factorial = 0
eles
for ( i =1; I < = input ;i++)
factorial = factorial*i;
printf("Factorial of given %d is: %d",input,factorial);
return 0;
}
A media should not be done away with all together
Economists use data:
- To explain trends in production and shipping.
- To follow and predict unemployment rates.
<h3>How do economists make predictions?</h3>
Economists often uses data to make forecast and it is where there is the use of sample data from a population that brings about uncertainty.
Note that Economists use data:
- To explain trends in production and shipping.
- To follow and predict unemployment rates.
See options below
How do economists use data? Check all that apply.
to follow and predict unemployment rates
to communicate with customers instantly
to ship goods to countries all over the world
to explain trends in production and shipping
to apply automation to reduce production costs
Learn more about economists from
brainly.com/question/9913581#SPJ12