| Note : "Break" can be used with any loop. |



| Note : If we use nested loop and we have break statement in the inner loop then only the inner loop breaks. |

The Continue Statement : Example
| Note : When using continue in nested loops , if continue is used is inner loop the only inner loop is continued , no effect of continue in outer loop. |