152k views
2 votes
In memory, an array of String objects ________. must be initialized when the array is declared consists of an array of references to String objects consists of elements, each of which is a reference to a String object is compressed to four bytes for each element

1 Answer

2 votes

Answer: Consists of an array of references to String objects

Step-by-step explanation:

In the memory, an array of the string object must consist an array of the reference to the string object. As, an array is the sequence of the given value and these value are must contain the same type in an array. The values in the array is known as elements.

The string object of an array are basically arranged as the primitive object. The variable of an array consist array reference and it is mainly used when we make variable of an array the it copy the string object reference in the memory.

User Rynant
by
4.8k points