Answer:
Following are the code in c language
#include <stdio.h> // header file
int main() // main function
{
int n1,i;
float avg,x,s=0; // variable declaration
printf("\nEnter How many Number terms you want:");
scanf("%d",&n1); // input terms by user
for(i=0;i<n1;++i)
{
scanf("%f",&x); // user input
s= s +x; //calculate sum
}
avg = s/n1;// calculate average of n number
printf("\nThe average of n number is:");
printf("%f",avg); // display average
return 0;
}
Output
Enter How many Number terms you want:3
3
4
3
The average of n number is:3.333333
Answer:
What is the importance of NIOSH and OSHA in the service desk environment? They conduct research on work environments and provide recommendations relating to areas such as preventing work-related illnesses and injuries and creating safe and comfortable work spaces.
Explanation:
Answer:
Growth in the PC platform
Explanation:
Information system technology refers to study, design, implementation, management, support - of computer based information system.
In today's technical growth age : the area has undergone many dynamic changes :
Changes of technical upgradation & application of IT info - Growth in cloud computing, Increased usage of data generated by the Internet of Things, Emerging mobile digital platform, Growing business use of big data
However, Growth of PC platform is not one of the current changes taking place in information systems technology.