Answer:
Explanation:
.exe: is a file extension, means file that contain executable program which can be run by Microsoft windows.
.txt: is also file extension which contains text (characters).
.avi: means (audio video interleave) is a file extension, which contains audio and video data encoded.
Answer:
The correct answer to the following question is "Typewriters".
Explanation:
CADCFA seems to be the very first provision of federal laws to specifically concentrate on computer assault. These clauses continued to allow corporations to prosecute unjust workers for compensation for the misuse of confidential or sensitive information.
- Even though we all agree that sometimes a federal worker uses the typewriters in the abundance of power, that's why it's not protected by that same act.
- The other options are incorrect because they are all known and are covered for that given CADCFA act.
The program used to create and implement a database is called an operating system.
<h3>What is an operating system?</h3>
An operating system (OS) is a system that helps to manage and allocate computer resources. These computer resources are:
- Central processing unit (CPU),
- Computer memory,
- File storage,
- Input/output devices,
- Network connections.
The most used operating system are;
- Apple mac OS,
- Microsoft Windows,
- Go-ogle Android OS,
- Lin-ux Operating System,
- Apple iOS
Learn more about operating system:
brainly.com/question/24032221
Answer:
// C program to find sum and average of 10 elements.
#include <stdio.h>
// main function
int main(void) {
// array
double arr[10];
// variables
double average,sum=0;
int i;
// ask to enter 10 elements of the array
printf("Enter 10 elements of the array:");
for(i=0;i<10;i++)
{
// read elements of the array
scanf("%lf", &arr[i]);
// calculate the sum of elements
sum=sum+arr[i];
}
// fint the average
average=sum/10;
// print sum
printf("Sum of 10 elements of the array is:%f ",sum);
// print average
printf("\nAverage of 10 elements of the array is:%f ",average);
return 0;
}
Explanation:
Create an array of size 10.Then read 10 values from user and store them into array.Find the sum of 10 elements of the array and assign it to variable "sum". Find the average by dividing sum with 10.Print the sum and average.
Output:
Enter 10 elements of the array:3 2 4 5 1 4 8 9 12 10
Sum of 10 elements of the array is:58.000000
Average of 10 elements of the array is:5.800000
Well, it was black and white…and it was silent. That's a lot different from today because we have surround sound, color TV, 3D/4D etc.
(I wish there was more to go on, but from time code 11:05 it only lasted for a few seconds. Hope this helps!)