0 / 60 seg.

Analyze the use of break in loops with this example:

for (int i = 1; i <= 10; i++) {
    System.out.println(i);
    if (i == 5) 
        break; 
}

What is the impact of the break statement?