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:
Answer: Resolution
Explanation: The total number of pixels that can be displayed on the screen at a time is called the resolution of the screen. This resolution is normally described in the pair of numbers, such as 2560 x 1440. This means, the computer screen is 2560 pixels wide and 1440 pixels tall.
Answer:
By using the str() function.
teeth = 32
print(str(teeth))
Explanation:
The str() function returns the string version of the given object.
'SYSTEM' <span> software helps run the computer and coordinates instructions between other software and the hardware devices.</span>