Assume that another method has been defined that will compute and return the student's class rank (Freshman, Sophomore, etc). It is defined as: public String getClassRank( ) Given that s1 is a student, which of the following would properly be used to get s1's class rank?A) S1 = getClassRank( );B) S1.toString( );C) S1.getHours( );D) S1.getClassRank( );E) GetClassRank(s1);