Computer Science, asked by Danishbhandari, 2 months ago

what are arrays in java language​

Answers

Answered by Anonymous
0

Explanation:

An array is a container object that holds a fixed number of values of a single type. The length of an array is established when the array is created. After creation, its length is fixed. You have seen an example of arrays already, in the main method of the "Hello World!" application

Answered by Oreki
0

Arrays in Java are collection of elements of same data type collected as a single unit and occurring at contagious location in the memory, referred by a single variable with index to refer to positions of each element.  

Similar questions