Look at your code: when it says 'cannot find symbol' it is trying to tell you that nothing can be found with that name.
Student.java:13: error: cannot find symbol
residency=argResidency;
^
So the arrow is pointing at
argResidency
I would suspect you missed out a dot, but since
arg
is a string, and they don't have a Residency property, that's unlikely. So have a closer look:
public Student(String argName, String argStudentNumber, String arg){
name=argName;
studentnumber=argStudentNumber;
residency=argResidency;
}
Since you have a string called
arg
you almost certainly meant to call
arg
argResidency
instead...
Follow that process for your other errors, and you should be able to start solving them for yourself.