You are going to create an interface called Transcripts with 2 methods: getGPA() and getTotalCredits(). Implement these methods in the Student class you created for Assignment.
• getGPA()'s return type is double and it returns the value 3.5
• getTotalCredits()'s return type is int and it returns the value 125
Modify the toString() method in Student class to include the student's GPA and total credits.
Your test run should look something like the following: