The if statement from problem 4 could also be written as: I. if (exponent < 8) System.out.println("exponent is 8 or less"); II. if (exponent > 8) System.out.println("exponent is 8 or less"); III. if (exponent <= 8) System.out.println("exponent is 8 or less");