1. (3 points) -- <= != || *= 2. (3 points) byte char int long/double (long and double are interchangeable) 3.(5 points) a) 0 + 2 0 + 1 1 + 2 2 + 3 3 + 4 4 + 5 b) 5 & 1 4 & 2 3 & 3 4) (9 points) Scanner sc = new Scanner(System.in); int currVal = sc.nextInt(); int high = currVal; int count = 0; while (curVal != 0){ count++; if (currVal > high){ high = currVal; } currVal = sc.nextInt(); } System.out.println(count + " " + high );