Computer Science, asked by sparshpoddar10, 8 months ago

give the solution of the program int i; for(i=5;i>10;i++) System.out.println(i); System.out.println(i*4);

Answers

Answered by VarunVarsha25
11

Answer:

It will not print anything

Explanation:

Because the condition is false that is 5>10...

so when the condition becomes false it exits the loop here the first iteration is false...so it exits without printing anything...

Hope it is useful... pls follow me...and Mark as the brainlist. .....

Answered by somalia31
2

Answer:

the output is 20

the loop will execute 0 times

Similar questions