Array
1. When talking about programming an array is a group of related data values grouped together as one value. Below is an example of how an array is defined and called in Perl. As can be seen in this below example our array is "@numbers" and we've grouped the names of numbers together in this array.my @numbers = ("one", "two", "three", "four", "five");
print "$numbers[0] and $number[1] equals 3";
one and two equals 3
2. With computer drives, an array is two or more drives that are grouped together and act as one drive. For example, in a RAID array a user may multiple drives that mirror each other for redundancy to help protect the data contained on the drives.
Also see: Hard drive definitions, Programming definitions