Open In App

Java | Arrays | Question 1

Like Article
Like
Save Article
Save
Share
Report issue
Report

Which of the following is FALSE about arrays in Java?

(A)

A java array is always an object

(B)

Length of array can be changed after creation of array

(C)

Arrays in Java are always allocated on heap


Answer: (B)

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.


Quiz of this Question
Please comment below if you find anything wrong in the above post


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads