I believe the answer is C.
According to Henri Fayol, it can be said that there are five functions of management: planning, organizing, staffing, directing, and controlling. From the description in the question, it seems that Susan should employ the controlling management function – which is defined as ensuring that all the ongoing process are proceeding as planned.
It is clear that this definition is precisely what Susan needs to do to fulfill the request that she was given.
CRT stands for <u>"Cathode Ray Tube".</u>
CRT are the many tiny green, blue, and red beams that shine to create an image on the computer screen.
earliest = ""
while True:
month = int(input("Enter a date (month): "))
day = int(input("Enter a date (date): "))
year = int(input("Enter a date (year): "))
if month == 0 and day == 0 and year == 0:
break
if month < 10:
month = "0"+str(month)
if day < 10:
day = "0"+str(day)
string_date = str(month)+"/"+str(day)+"/"+str(year)
print(string_date)
if earliest == "":
earliest = string_date
else:
year,month,day=int(year),int(month),int(day)
lst = list(map(int,earliest.split("/")))
if year < lst[2]:
earliest = string_date
elif year == lst[2] and month < lst[0]:
earliest = string_date
elif year == lst[2] and lst[0] == month and day < lst[1]:
earliest = string_date
print(earliest,"is the earliest date")
I wrote my code in python 3.8. Best of luck.