what is java and loop
Answers
Answer:
is the correct answer plz mark me brainest once

Answer:
Loops in Java
In programming languages, loops are used to execute a set of instructions/functions repeatedly when some conditions become true. There are three types of loops in Java.
for loopwhile loopdo-while loopJava For Loop vs While Loop vs Do While Loop
Comparisonfor loopwhile loopdo while loopIntroductionThe Java for loop is a control flow statement that iterates a part of the programs multiple times.The Java while loop is a control flow statement that executes a part of the programs repeatedly on the basis of given boolean condition.The Java do while loop is a control flow statement that executes a part of the programs at least once and the further execution depends upon the given boolean condition.When to useIf the number of iteration is fixed, it is recommended to use for loop.If the number of iteration is not fixed, it is recommended to use while loop.If the number of iteration is not fixed and you must have to execute the loop at least once, it is recommended to use the do-while loop.Syntaxfor(init;condition;incr/decr){ // code to be executed }
"