studentvariable is declared within the scope if/else, not outside, so you cannot use it outside of these blocks of code.
UndergradTA GradTA , :
Student student = null;
if (option==1) {
student = new UndergradTA();
student.setIsUnderGrad(true);
} else if(option==2) {
student = new GradTA();
student.setIsGrad(true);
}
student.someMEthod(...);