Th python code of a program that asks the user enter their name, age, and high school GPA and determine if they are eligible for admission is as follows:
x = input("please enter your name: ")
y = int(input("Enter your age: "))
z = float(input("Please enter your high school GPA: "))
if y >= 18 and z >= 2.75:
print(f"You are eligible to apply to study your major")
elif y >= 18 and z < 2.75:
print("You are not eligible to apply to study your major")
elif y == 16 or y == 17 and z >= 3.0:
print("You can apply for exceptional acceptance")
else:
print("You must wait until you are old to apply")
The code is written in python.
learn more on python code here; https://brainly.com/question/13450046