Submitted Questions

  • Break Statement

    What is the break statement used for?1. To quit the program.2. To quit the current iteration.3. To stop the current iteration and begin the next iteration.4. None of the above.

    preeti jain

    • Sep 26th, 2012

    To quit the current iteration. i.e. jump out of the loop.

    aditya pathak

    • Sep 21st, 2012

    3. To stop the current iteration and begin the next iteration.