10A

You are given a class Gallery which models a collection of Pictures.

You are to add these methods complete with javadoc:

Download these images and save them in the project folder

"" "" '' '' ''''

For the draft, just implement getArea method

10A draft:
10A final:

10B

Complete the Array2DManager class. Array2DManager 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 sum to return the sum of the 0th row.

 

10B draft:
10B final:

10C

Complete the class StudentManager. StudentManager contains an Arraylist of Student objects. The ArrayList is called students. Do not change the variable name. A student has a name and a final average. You are given the Student class.

Add constructor and methods:

For the draft, implement the constructor and the add method

10C draft:
10C final: