Answer:
False because calender events help a person remeber when s/he has a event happening that day!
Answer:
11000011
Explanation:
This is because of the rules of bas 2
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: