hello
Q 6
Which of the following is correct:
- String temp [] = new String {"j" "a" "z"};
- String temp [] = { "j " " b" "c"};
- String temp = {"a", "b", "c"};
- String temp [] = {"a", "b", "c"};
Select the most appropriate answer.
thiss is the way of representing the string array !