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