Answer:
The ping command.
Explanation:
In a network, workstations known as clients, users or nodes are the devices where data is needed or sents from. A server on the other hand, is a device in the network, configured to render a particular service like database, domain name service, web service etc.
When a link from a workstation to a server is down, the workstation looses connection the server. To confirm the connectivity of the link, "ping" the server ip address from the workstation using the command "ping 'server ip address'". This sends echo packets to the server, which is echoed back if there is connectivity.
Answer:
Motherboard
Explanation:
The motherboard as the name implies is the computer's main circuit board that connects all input, output devices and houses the memory and storage of the computer.
Answer:
Here you go, change it however you'd like :)
Explanation:
(A nested loop was not needed to fulfill this task)
usr = int(input("How many days would you like to calculate: "))
pen = 0.01
for n in range(1, usr + 1):
print(f"Day: {n} | Amount: ${pen}")
pen += pen