Question 1: (1) x=5; while(x>0) { System.out.println("X is x"+x); x++; } Output: error - infinite loop X is 5 X is 6 . . . for(x=5;x>0;x++) System.out.println("X is x"+x); x=5; do { System.out.println("X is x"+x); x++; } while(x>0); (2) int i=5, n=6, sum=50; while (i7) { System.out.println("X is"+x); x++; } int x=0; do { System.out.println("X is"+x); x++; } while(x>7); ----------------------------------------------------------- Question 2: public class Calculate { public static void main (String [] args) { double a,x; double F; System.out.println("a = "); a = double.parseDouble(stdin.readLine()); System.out.println("x = "); x = double.parseDouble(stdin.readLine()); F = 1 - Math.exp(-a*x); System.out.println("value of F : "+F); } } --------------------------------------------------------------- Question 3: int M=44; int N=28; while(M!=N) { while(M>N) M = M-N; // M-=N; while(M