Computer Science, asked by Montygill, 5 hours ago

____________ statement is used to skip some statements inside the loop.​

Answers

Answered by sameeha343
2

Explanation:

The break and continue statements are the jump statements that are used to skip some statements inside the loop or terminate the loop immediately without checking the test expression.

Hope it helps you

Answered by syed2020ashaels
0

Break and continue statement .

Explanation:

The break and continue statements are the jump statements that are wont to skip some statements inside the loop or terminate the loop immediately on faith the test expression. These statements is used inside any loops like for, while, do-while loop.

  • Break:

The break statement in java is employed to terminate from the loop immediately. When a prospect statement is encountered inside a loop, the loop iteration stops there, and control returns from the loop immediately to the primary statement after the loop.

  • Continue:

The continue statement in Java is employed to skip the present iteration of a loop. we are able to use continue statement inside any forms of loops like for, while, and do-while loop.

Project code #SPJ3

Similar questions