Question: 1. Consider the following declaration: double passwords[100]; In this declaration, identify the following: a. The array name. b. The array size. c. The data type
1. Consider the following declaration:
double passwords[100];
In this declaration, identify the following:
a. The array name.
b. The array size.
c. The data type of each array component.
d. The range of values for the index of the array.
2. Determine whether the following array declarations are valid. If a declaration is invalid, explain
why.
a. string employees[82];
b. int myArray[50;
c. int SIZE;
double list[SIZE];
d. int X = 50;
double list[X - 60];
e. int ids[-30];
f. names string[10];
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
