What is the use of the “break” and “continue” keywords in Java loops
Vishalini.R Answered question September 7, 2023
The loop is immediately stopped with the break statement. The current iteration of the loop can be skipped with the continue command. In Java programming, the break keyword is used to denote break statements. In Java programming, the continue keyword is used to denote a continue statement.
Vishalini.R Answered question September 7, 2023