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);
The number 0 will be printed out
  • The number 9 will be printed out
  • The number 11 will be printed out
  • The number 20 will be printed out
  • The number 19 will be printed out

There are no hints for this question