Problem 1
The ________ indicates the number of elements, or values, an array can hold.
Problem 11
By using the same ______ for multiple arrays, you can build relationships between the data stored in the arrays. These arrays are referred to as parallel arrays.
Problem 36
A weather analysis program uses the following array to store the temperature for each hour of the day on each day of a week. int temp [7][24] Each row represents a day \((0=\text { Sunday, } 1=\text { Monday, etc. })\) and each column represents a time \((0=\text { midnight, } 1=1 \text { a.m. }, \ldots, 12=\text { noon, } 13=1 \text { p.m., etc. })\) A) Write code to find Tuesday's average temperature. B) Write code to find the average weekly noon temperature.