for(i=1 ; i<= 5; i++) {
for (j=1; j<=5 ; j++) {
System.out.println(); }}
How many times the outer loop(i) will be executed
Answers
Answered by
0
the outer loop will be executed for 5 times
Answered by
0
Answer:
loop i will execute 4 times
Similar questions