Question 30 of 76 from exam 1Z0-808: Java SE 8 Programmer I
Question
Given the code fragment:
![public static void main(string[] args) {
String[] arr = ("A", "BY, "C", "D"};
for (int i = 0; i < arr.length; i++)
system.out.print (arr[i] + " "Ji
if (arr[i].equals("c")) {
continue;
}
System. out.println ("Work done");
break;](https://eaeastus2.blob.core.windows.net/optimizedimages/static/images/Java-SE-8-Programmer/question/img0003400001.png)
What is the result?
Answers
Explanations
Click on the arrows to vote for the correct answer
A. B. C. D.C.
Given the code fragment:
What is the result?
Click on the arrows to vote for the correct answer
A. B. C. D.C.