"Auxiliary memory" , also known as auxiliary storage, secondary storage, secondary memory or external memory :)
Answer:
#include <iostream>
using namespace std;
int main() {
double temps[10]={32.2,30.1,33.5,32.8,35.0,36.7,36.8,35.6,34.9,36.9};//initialized 10 temps values.
double avgTemp,total=0;//two varaibles declared.
for(int k=0;k<10;k++)//for loop to calculate the average..
{
total+=temps[k];//adding temperature values to the total..
}
avgTemp=total/10;//calcualting the average..
cout<<"The average temperature is "<<avgTemp<<endl;//printing the average temperature.
return 0;
}
Output:-
The average temperature is 34.45.
Explanation:
The above written code is in C++. An array of double temps is initialized with arbitrary 10 values.Then the average is calculated using the integer k and the average is stored in the variable avgTemp. Then it is printed on the screen.
Answer:the answer is not A
Explanation:
Secondary storage is needed because it is non-volatile, it retains what's in it without the need for a power supply.
Answer: Reliability, portability and scalability.
Explanation:
The communication and information system provide effective and flexible communication to the users with the help of their key principle that are:
Reliability- Reliability means ability to work and perform various type of functions in emergency.
Portability- The communication channel easily work in any type of technology, frequency and protocols.
Scalability- It is basically use in large scale according to the requirements.
These key principles basically provide the ability to manage the flow of data and information. It also maintain the communication connectivity.