IDNLearn.com: Where questions are met with accurate and insightful answers. Find the information you need quickly and easily with our reliable and thorough Q&A platform.

In reviewed assignment, you will use an array to calculate an average from raw data.

a. True
b. False


Sagot :

Answer:

a. True

Explanation:

In C, an array is a data structure used to hold a collection of similar data types. It is ordered and indexed, which means that it can be accessed using the index value of the target item in the array.

A loop statement can be used to iterate over all the items in the array. For example, you can get the average of all the items in an integer array by iterating over it, summing its total and dividing it by the length of the array.