You are not putting the question but I can guess that it asking for the CD duration. To answer this question, you need to convert the CD capacity unit(783.216 megabyte) into megabits which were used for the cd read rate (1.4 megabits/s). The calculation would be:
CD duration: CD capacity / rate= 783.216 megabytes *(8 megabits/megabyte) / (1.4 megabits /s)= 4475.52 second or 74.6 minutes
Answer: zettabytes
Explanation:
Information system, is simply referred to as an integration of a set of components that are vital for the collection, storage and the processing of data and also important for the provision of information, and knowledge.
With new laws requiring the storage of emails and other important documents, information systems storage now exceeds approximately 4.7 zettabytes.
Mechanical energy converts chemical energy into rotational or linear motion.
<u>C program for finding the largest Value in array of integers</u>
#include <stdio.h>
/*Function that returns the largest value stored in an array-of-int*/
int max(int array[], int m)
{
int i;
/* Initializing variable maximum with array[0]*/
int maximum = array[0];
/* Traversing array elements from 2 to last and comparing it with variable maximum*/
for (i = 1; i < m; i++)
if (array[i] > maximum)
maximum = array[i];
return maximum; //returning maximum element of array
}
//driver function
int main()
{
int array[] = {5, 78, 23, 65, 9}; //Input array
int m = sizeof(array)/sizeof(array[0]); //finding the length of array
printf("Largest in given array is %d", max(array, m));/*function calling and printing maximum element of array */
return 0;
}
<u>Output:
</u>
Largest in given array is 78