Vidyalelo
Java Programming · Q35

Flow Control

Programming · Java Programming · question 35

Q35

Determine output: public class Test public static void main(String args[]) int i, j; for(i=1, j=0;i<10;i++) j += i; System.out.println(i);

A.
10
Answer
B.
11
C.
9
D.
20
E.
None of these

Answer: Option A

Solution

Answer: Option A
Solution:
In giving a program for loop will be break when i=10. Since after for only one statement execute ( j += i;) because brace is not mentioned and after that print statement will execute and print i=10