public class Utils1 { private static boolean isIncreasing( Time1[] ts ) { boolean isIncreasing = true; for (int i=0; isIncreasing && i java Utils1 1 2 3 // the array of times is: // 1:2:3 // 2:4:6 // 3:6:9 // 4:8:12 // 5:10:15 // the array is increasing: true