Answer:
It is measured in megahertz (MHz) and gigahertz (GHz).
Hope this helps.
Answer:
<u>Redundancy</u> is a strategy of using multiple types of technology that prevent the failure of one system from compromising the security of information.
Explanation:
Redundancy means having extra or duplicate resources available to support the main system. It is a backup or reserve system that can step in if the primary system fails. The reserve resources are redundant most of the time as they are not being used if everything is working properly.
Answer:
# include <conio.h>
# include <iostream.h>
using namespace std;
main{
int a[25], sum;
cout<<"enter the values in array a";
for (int i=0; i<= 24 ; i++)
{
cin>>a[i];
}
sum =0;
for (int j=0; j<=24 ; j++)
{
sum= sum + a[j];
}
cout<< sum;
getch ();
}
Answer:
Data Type: Double (decimal)
Variable Name: avg
Explanation:
An average of numbers will typically give you a decimal answer. Therefore, you should use the Double data type.