2. Java: String Array
Which of the following Java declaration of the String array is correct?
Pick ONE option
String temp [] = new String {"j" "a" "Z"};
String temp [] = { "j""b" "C"};
String temp = {"a", "b", "c"};
String temp [] = {"a", "b", "c"};
Clear Selection
Answers
Answered by
1
Answer:
Java: String Array Which of the following Java declaration of the ... Pick ONE option. String temp [] = new String {"j" "a" " Z"};
thank you
from Thor.
Similar questions