Which of the following functions sends the the GPA entered by the user to the calling function? A. def get_gpa(): gpa = float(input("Enter GPA: ")) B. def get_gpa(gpa): gpa = float(input("Enter GPA: ")) C. def get_gpa(): gpa = float(input("Enter GPA: ")) return gpa D. All of the above