Computer Science, asked by manasakavala5295, 1 year ago

What are variable length (Dynamic) Arrays in Java?

Answers

Answered by AditiSinha23
0

In Java, Arrays are of fixed size. The size of the array will be decided at the time of creation. But if you still want to create Arrays of variable length you can do that using collections like array list

Answered by Oreki
3

ArrayList is a variable length or dynamic Array-like data structure in Java.

Similar questions