Computer Science, asked by techybro, 1 day ago

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 sreehithagadhamsetty
0

the outer loop will be executed for 5 times

Answered by noob6969
0

Answer:

loop i will execute 4 times

Similar questions