What will happen after the break in this code?
int i = 0; for (int j = 0; j < 20; j++) { if (j < 10) { break; } i++; } System.out.println(i);
There are no hints for this question