// save TestPeople class in file TestPeople.java public class TestPeople { public static void main(String[] args) { People list =new People(); list.assignThirdColumn(); list.printData(); } } ///////////////////////////////////////////////////////////// // save this as People.java public class People { private String[][] p=new String[25][3]; private int size; // read number size from the first line of your input file // create an array of size array components // assign size pairs of components public People() { String firstName, lastName; size= Keyboard.readInt(); for (int i=0; i