47.7k views
3 votes
In Java, String[] indicates:

a. series of strings.

b. local parameters of series of strings.

c. formal parameters of series of string.

d. array of strings

1 Answer

6 votes

Answer:

D. Array of strings

Step-by-step explanation:

In Java, strings are objects, and also constants, their value cannot be changed. A string class contains a collection of objects, that class is provided by Java to create and manipulate strings. String class is defined as a sequence (or array) of characters.

The answer is D. Array of strings

User Trent Bartlem
by
5.6k points