Difference between a break statement and a continue statement



Q) What is the difference between a break statement and a continue statement?

A) A break statement results in the termination of the statement to which it applies (switch, for, do, or while). A continue statement is used to end the current loop iteration and return control to the loop statement.

Random Posts

  • Explain session destroy in Servlets
  • Applet Interview Questions
  • Getting URL contents
  • What are the elements of JSP
  • Difference between session.save() , session.saveOrUpdate() and session.persist()

Post a Comment