Question: Analyze the following code: public class Test { public static void main (String args[]) { int i = 0; for (i = 0; i <
Analyze the following code: public class Test { public static void main (String args[]) { int i = 0; for (i = 0; i < 10; i++); System.out.println(i + 4); } }
Question 3 options:
| The program compiles despite the semicolon (;) on the for loop line, and displays 14. | |
| The program compiles despite the semicolon (;) on the for loop line, and displays 4. | |
| The program has a compile error because of the semicolon (;) on the for loop line. | |
| The program has a runtime error because of the semicolon (;) on the for loop line. |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
