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);
}
}
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
B. 11
C. 9
D. 20
E. None of these
Answer: Option A
how
answer will be 45 since only one statement is there below for loop, so no braces required. hence it will execute j+=i inside for loop i.e 9 times
plz explian