1z0-808 문제 186

Given:
public class DoBreak1 {
public static void main(String[] args) {
String[] table = {"aa", "bb", "cc", "dd"};
for (String ss: table) {
if ( "bb".equals(ss)) {
continue;
}
System.out.println(ss);
if ( "cc".equals(ss)) {
break;
}
}
}
}
What is the result?

1z0-808 문제 187

Given:

What is the result?

1z0-808 문제 188

Given:
Acc.java:

Which statement is true?

1z0-808 문제 189

Given the code fragment:

What is the result?

1z0-808 문제 190

Given the following code:

What are the values of each element in intArr after this code has executed?