Answer:Effective but not efficient
Explanation:
Jim is effective because he was able to complete the IT tasks well but he is not efficient because he didn't submit the result on time because being efficient includes management of time.
Show the picture to answer the question
From what my teacher taught us it would be c.
Answer:
7.4 Code Practice: Question 1
def GPAcalc(g):
if g == "a" or g == "A":
return 4
elif g == "B" or g == "b":
return 3
elif g == "C" or g == "c":
return 2
elif g == "D" or g == "d":
return 1
elif g == "F" or g == "f":
return 0
Explanation: