Computer Science, asked by Sanahayat, 13 hours ago

How many times will the following loop execute and what will be the output of this loop ? int a=1; do { System.out.println (a); a+=5; }while (a<=20);​

Answers

Answered by shaikhabdulrab515
0

3 times

output will be

1 as it is of a value

6

11

16

Similar questions