Module 0 Checkpoint

Teacher-led. Before starting, make sure every student has imported their Module 0 Java Project into Eclipse. Check that all programs are closed but students have selected the default package in the Eclipse Package Explorer.

Instruct students to do the following - check student screens to monitor understanding.

Help students who are stuck, but note lack of mastery.

1.  Create a new Java class called Checkpoint

2.  Add a main method to the class
 
3.  Create and initialize a 2D integer array of 5 rows and 5 columns.

4.  Use a nested for loop to initialize each int in the 2D array to a random number.
  
5.  Use a separate nested for loop to print the contents of the array in row major order.