import static java.lang.System.out; public class ifquiz { public static void main(String[] a) { // --------------------------------------------------------------- int i = 4; int j = 5; boolean mark = false; if (i > j) { mark = true; } // question 1: what is the value of mark here? out.println("question 1: mark = " + mark); // --------------------------------------------------------------- String fname = "chris"; String lname = "mair"; int found = 0; if (fname.equals("chris") || lname.equals("turing")) { found = found + 1; } if (fname.equals("chris") && lname.equals("mair")) { found = found + 1; } // question 2: what is the value of found here? out.println("question 2: found = " + found); // --------------------------------------------------------------- int age = 30; int employed_since = 1996; double raise = 0.0; if (age > 29) { if (employed_since < 2000) { raise = 200.0; } else { raise = 100.0; } } // question 3: what is the value of raise here? out.println("question 3: raise = " + raise); } }