Answer:
a study schedule.
Explanation:
A plan to budget time for studying and activities is referred to as a study schedule. A study schedule is mostly designed by a student and it comprises of their learning goals and objectives, as well as allocated time to start and complete.
The main purpose of a study schedule is to avail students the opportunity to maximize their time and improve their ability to study by themselves through an organized schedule for specific subjects, courses or class.
In a relational database application, a <u>foreign key</u> is used to link one table with another.
<h3>What is a
foreign key?</h3>
In database management system (DBMS), a foreign key can be defined as a column whose value provides a link between the data that are stored in a table or relational database.
This ultimately implies that, a <u>foreign key</u> is used to link one table with another in a relational database application.
Read more on keys here: brainly.com/question/8131854
#SPJ12
Answer:
x = int(input("What grade are you in? "))
if (x == 9):
print ("Freshman")
elif (x == 10):
print("Sophomore")
elif (x == 11):
print ("Junior")
elif (x == 12):
print("Senior")
else:
print ("Not in High School")
Explanation: