Problem
1. Write all of the declarations needed to declare the following array variables.
a. A table with five rows and six columns that contains Boolean values.
b. A table indexed from 5 to 0 and ‘A' to ‘F' that contains Float values.
c. A table with rows indexed by uppercase letters and columns indexed by lowercase letters that contains Boolean values.
2. Indicate which of the following would be represented best by a twodimensional array and which would be represented best by an array of arrays.
a. A board for the game of checkers.
b. A list of sales totals for each salesperson in the company. Each yearly sales total consists of 12 monthly sales totals.
c. A page of text consisting of 64 lines of text. Each line contains 132 characters.
d. A page of text with 64 rows and 132 columns.