Computer Science, asked by snowflake86, 8 months ago

Define jump statement. Explain about any two. ​

Answers

Answered by Anonymous
14

Jump statements are used to unconditionally transfer program control from one point to elsewhere in the program. Jump statements are primarily used to interrupt loop or switch-case instantly. Java supports three jump statements: break, continue, and return.

Explanation:

PLEASE MARK ME AS BRAINLIEST

Answered by Anonymous
13

\red{Answer :-}

Jump statements cause an unconditional jump to another statement elsewhere in the code. They are used primarily to interrupt switch statements and loops. The jump statements are the goto statement, the continue statement, the break statement, and the return statement, which are discussed in the following sections.

Similar questions