Leave a Reply 1

Your email address will not be published. Required fields are marked *


renko

renko

Answer A:

Code question:
public class TestLoop {

public static void main(String[] args) {
int a = 0, z=10;
while (a < z) {
a++;
–z;
}
System.out.print(a + " : " + z);
}
}
Output:
5 : 5