which of the following is false about arrays on java a java array is always an object length of array can be changed after creation of array arrays in java are always allocated on heap
Answers
Answered by
0
java array is always an object length of array can be changed after Creation of array
Answered by
1
Answer:
Length of arrays can be changed after creation .
Explanation:
In Java, arrays are objects, they have members like length. The length member is final and cannot be changed.All objects are allocated on heap in Java, so arrays are also allocated on heap.
Similar questions