Answer:
true
Step-by-step explanation:
have a nice day and hope it helps
True
For loops:
//This is Java code
for (int i = 0; i < 10; i++)
{
System.out.println("hi");
}
They let you specify the number of times the code inside the loop will execute. Above, it would print "hi" 10 times.
1.6m questions
2.0m answers