Westonci.ca offers fast, accurate answers to your questions. Join our community and get the insights you need now. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A platform. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A platform.

The for loop is a count-controlled loop and is used to execute a loop body a predictable number of times.

A. True
B. False


Sagot :

Answer:

True

Explanation:

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.