/** * This week's inlab answer * * Hunter * Lab */ public class Driver { public static void main(String [] args) { InLab lab = new InLab(); lab.print(); //part 3 Print the second smallest element in the array. lab.partThree(); //part 4 Average of the array lab.partFour(); //part 5 Search for a integer lab.partFive(); //part 6 historgram according to the array data lab.partSix(); //part 7, frequencies lab.partSeven(); } }