Multiple choice technology

The simplest form of the for loop in Java is for(initialization; condition; iteration) statement;

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

This is the standard classic for loop syntax in Java: for(initialization; condition; iteration) statement. The initialization executes once, the condition is checked before each iteration, and the iteration executes after each loop cycle. Java also supports enhanced for-each loops, but this is the fundamental traditional form.