0 / 60 seg.

Evaluate the "for" loop with multiple initializations in this Java code:

for (int i = 1, j = 5; i < j; i++, j--) {
    System.out.println("i=" + i + ", j=" + j);
}