Back to quizzes

Loops Quiz

Java / Loops | Medium | 15 questions

Question 1 of 15

4 free questions left

What will this code output? for (int i = 1; i <= 5; i++) { if (i == 3) continue; System.out.print(i + ' '); }