Code a method named createStudent(). This method has no parameters, but returns a Student object. a) Define a Scanner variable to read from the keyboard. b) Define variables for name, student number and loan amount. Prompt the user to type data values for each of the variables and then read the values from the keyboard. c) Define and create a Student object from the data read from the keyboard. d) Return this Student object. 4 Code a method named createPostGraduate(). This method has no parameters, but returns a PostGraduate object. a. Define a Scanner variable to read from the keyboard. b. Define variables for name, student number and loan amount and thesis. Prompt the user to type data values for each of the variables and then read the values from the keyboard. c. Define and create a PostGraduate object from the data read from the keyboard. d. Return this PostGraduate object.