What is the result?

Given:

3. public class Breaker {
4. static String o = “”;
5. public static void main(String[] args) {
6. z:
7. o = o + 2;
8. for(int x = 3; x < 8; x++) {
9. if(x==4) break;
10. if(x==6) break z;
11. o = o + x;
12. }
13. System.out.println(o);
14. }
15. }

What is the result?

Given:

3. public class Breaker {
4. static String o = “”;
5. public static void main(String[] args) {
6. z:
7. o = o + 2;
8. for(int x = 3; x < 8; x++) {
9. if(x==4) break;
10. if(x==6) break z;
11. o = o + x;
12. }
13. System.out.println(o);
14. }
15. }

What is the result?

A.
23

B.
234

C.
235

D.
2345

E.
2357

F.
23457

G.
Compilation fails.



Leave a Reply 0

Your email address will not be published. Required fields are marked *