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
6
Explanation:
20.Loop is executed for 0 times
Answered by
0
I =20
loop executes 0 times
loop executes 0 times
Similar questions