Consider the behavior of a "for" loop in this Java code:
for (int i = 0; i < 3; i++) { System.out.println("Hello"); }
Prints "Hello" three times
Syntax error
No output
Prints "Hello" infinitely