Flow Control

© examsiri.com
Question : 5 of 14
 
Marks: +1, -0
Given:
1. public static void main(String[] args) {
2.   for (int i = 0; i <= 10; i++) {
3.    if (i > 6) break;
4.   }
5.   System.out.println(i);
6. }

What is the result?
Go to Question: