Interview Questions

“Check” and “Continue”. What is the difference?

SAP Reports,SAP DB,ALE, SAP Tables questions and answers


(Continued from previous question...)

“Check” and “Continue”. What is the difference?

Check statement, checks the condition with in a loop and if it satisfies the condition, the control moves to next statement in the loop. Otherwise, it terminates the loop.

Continue statement, acts like goto statement. If the condition is true, it processes the remaining statements and if the condition is false, then the control moves to the top of loop.

(Continued on next question...)

Other Interview Questions