10A

You are given a class Gallery which models a collection of Pictures. The constructor takes an arraylist of Picture objects

You are to add these methods and constructor and provide javadoc:

Download these images and save them in the project folder

ashi billy tiger cat corky

For the draft, provide instance variables, the constructor, and the getTotalHeight() method. Provide Javadoc

10A draft:
10A final:

10B

Complete the Array2DUtil class. Array2DUtil has a constructor that creates a two dimensional array of random ints less that 100 with the given number of rows and columns and assigns it to the instance variable. The Random object is created for you with a seed. Do not change it.

Add these methods

For the draft, provide instance variable and constructor. Code the instance method average to return the average of the last column.

10B draft:
10B final:

10C

Create a class String2DArray. Its constructor takes a 2D array of Strings as a parameter. The class has methods

For the draft, implement longestWord().

10C draft:
10C final: