✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено у результаті виконання програми?
for (int i = 0; i < 4; i += 2)
{
System.out.print(i + " ");
}
System.out.println(i); /* Line 5 */