Answer:
class Student:
def __init__(self, name, age):
self.name = name
self.age = age
def display(self):
print("Name:", self.name)
print("Age:", self.age)
def canEnrollIn(self, GPA, GRE):
if GPA >= 3.0 and GRE >= 300:
print("You can enroll in the College of Education or College of Arts.")
else:
print("Sorry, you are not eligible for enrollment.")
def canEnrollIn(self, GPA, GRE, GMAT):
if GPA >= 3.5 and GRE >= 320 and GMAT >= 650:
print("You can enroll in the College of Medicine or College of Dentistry.")
else:
print("Sorry, you are not eligible for enrollment.")
s6 = Student("John", 25)
s6.display()
s6.canEnrollIn(88, 80, 80)
s6.canEnrollIn(90, 80)