You must have javascript enabled to view this website. Please change your browser preferences to enable javascript, and reload this page.
Click on the correct response for each question below.
int i; for(i=1;i<= 3;i++) { System.out.println("Hello"); } System.out.println(i); }
class Computation { public static void main (String args[]) { int i; long f = 2; for(i=4; i<= 5;i++){ f *= i; } System.out.println(f); } }