Answer:
graph screen is the correct answer
Presentation software is probably his best option. It would allow him to present visual and audio supplements to his audience.
Answer:
Laurence can write 10 programs while Carrie Anne can write 5.
Laurence can make 6 sunglasses while Carrie Anne can make 4
Explanation:
True, the Windows desktop displays task manager, all programs, computer status, documents...
Answer:
Explanation:
Since no further information was provided I created the PayLevel function as requested. It takes the Ssn as input and checks it with a premade dictionary of Ssn numbers with their according salaries. Then it checks that salary against the average of all the salaries and prints out whether it is Above, Below, or Average. The output can be seen in the attached picture below.
employeeDict = {162564298: 40000, 131485785: 120000, 161524444: 65000, 333221845: 48000}
average = 68250
def PayLevel(Ssn):
pay = employeeDict[Ssn]
print("Employee " + str(Ssn) + " is:", end=" "),
if pay > average:
print("Above Average")
elif pay < average:
print("Below Average")
else:
print("Average")
PayLevel(161524444)
PayLevel(131485785)