Welcome to Westonci.ca, the place where your questions find answers from a community of knowledgeable experts. Experience the convenience of finding accurate answers to your questions from knowledgeable professionals on our platform. Get precise and detailed answers to your questions from a knowledgeable community of experts on our 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.

Thanks for stopping by. We strive to provide the best answers for all your questions. See you again soon. Thanks for using our service. We're always here to provide accurate and up-to-date answers to all your queries. Find reliable answers at Westonci.ca. Visit us again for the latest updates and expert advice.