Parallel arrays
•
Parallel arrays
Two or more arrays that have the
same index range, and whose elements contain
related information, possibly of different data types
final int SIZE = 50;
int[] idNumber = new int[SIZE];
float[] hourlyWage = new float[SIZE];