Arrays

An array is a variable that can store multiple values (elements) of the same data type at the same time using a method known as indexing (indexing is how Java stores array elements; 0 is the starting point of Java indexes). Array makes the job a programmer easier by allowing the programmer to assign multiple values to a variable. Below is how you declare an array.

Click here to read more