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.
A system consumed 0.4 seconds of processor time, 0.3 seconds accessing the network, and 0.5 seconds accessing the disk drive to execute the task. Where is the bottleneck in this network
Answer:
the disk drive
Explanation:
A bottle neck in a network is the condition through which the data flows becomes limited by the network of the computer system. It occurs in the user network or within the servers where there are contention for any internal server resources.
In the context, a system that consumes 0.4 seconds for the processor time and time 0.3 seconds for accessing the network. The system also takes 0.5 seconds for accessing disk drive for executing the task. So the bottle neck in this system is the disk drive.
What does the “MIN” and “MAX” functions allow you to do when inserted in a spreadsheet?
Answer:
The MIN and MAX functions are just what the names imply. MIN will find the lowest number in a range, while MAX finds the largest number in a range. One advantage to these functions is that they can be combined with the IF function.
Explanation:
A pizza delivery restaurant decides to stop hiring drivers and start hiring cyclers to deliver its pizza. The restaurant thinks this will cut costs because it will not have to pay for gas. This is an example of which of the following supply chain management drivers?
A. information
B. facilities
C. transportation
D. inventory
Answer:
C. i think im sorry if im wrong plz forgive
Who am I
1.I am the law established by the intellectual property organization
2.I am an application used to illegally harm online and offline computers users
3.I am the crime through the Internet
4. I impose restrictions on incoming and outgoing information to and from networks
In order to create a chart, which of the following must be selected?
O Data tools
O Worksheet tab
O Data source
O Table styles
A chart is the graphical presentation of data and is a part of the data visualization. The data is represented by the symbols and bars in a bar chart.
They are often sued to show large quantities of data in a simple and understandable form. For making a chart first we need to select data tools and then design tools.Hence the option A is correct.
Learn more about the order to create a chart.
brainly.com/question/22004535.
Check My Work Sherri is considering replacing a processor on her laptop. The laptop is running slower than she would like. What should Sherri consider prior to taking the laptop apart
Complete Question:
Sherri is considering replacing a processor on her laptop. The laptop is running slower than she would like. What should Sherri consider prior to taking the laptop apart? (Select all that apply.)
Group of answer choices.
a. Try an external device before replacing the motherboard.
b. Make sure you have the correct processor for the motherboard.
c. Verify that the laptop is not under warranty.
d. Determine whether a teardown procedure is available.
Answer:
b. Make sure you have the correct processor for the motherboard.
c. Verify that the laptop is not under warranty.
d. Determine whether a teardown procedure is available.
Explanation:
In this scenario, Sherri is considering replacing a processor on her laptop because the laptop is running slower than she would like.
Hence, Sherri should consider the following informations prior to taking the laptop apart;
I. Make sure you have the correct processor for the motherboard. She can get the specifications of the motherboard and processor on the manufacturer's website.
II. Verify that the laptop is not under warranty because if it still under warranty, taking the laptop apart would void the warranty granted by the original manufacturer.
III. Determine whether a teardown procedure is available. She should ensure there is a guide available for dismantling and re-coupling of the laptop.