Computer Science, asked by manisha12336, 8 months ago

Give the output of the following program segment and also mention how many times the loop is executed. int i; for(i = 5; i > 10; i++) System.out.println(i); System.out.println(i * 4);

Answers

Answered by rajdeepjha211001
6

Explanation:

20.Loop is executed for 0 times

Answered by parvti0013
0
I =20
loop executes 0 times
Similar questions