Report Bug
Qus : What is true about a break statement?
Qus ब्रेक स्टेटमेंट के बारे में क्या सच है?

A. Break stops the execution of entire program
B. Break halts the execution and forces the control out of the loop
C. Break forces the control out of the loop and starts the execution of next iteration
D. Break halts the execution of the loop for certain time frame


Solution
B. Break halts the execution and forces the control out of the loop






Report Bug