5. Which correctly creates an array of five empty Strings (select all that apply)?
a>
String a [ ] = new String [5]; for (int i = 0; i < 5; a[i++] = ""); <br /> b>String a [ ] = {"", "", "", "", ""};
c>String a [5];
d>String [ ] a = new String [5]; for (int i = 0; i < 5; a[i++] = null); <br /> e>String [5] a;
..
.
.
...
.
.
the correct answers are A and B.
Now I want to know why not D?
----------