Answer:
Enter time 1 HH:MM:SS8:5:22
Enter time 2 HH:MM:SS7:24:37
0:40:45
Explanation:
The program for above in Python is:
from datetime import datetime
s1 = input("Enter time 1 HH:MM:SS")
s2 = input("Enter time 2 HH:MM:SS")
Format1 = '%H:%M:%S'
tdiff = datetime.strptime(s1, Format1) - datetime.strptime(s2, Format1)
print(tdiff)
We are using the datetime class in datetime module for using strptime to find the difference between the two times.
Answer: Market-space
Explanation:
Market-space is defined as marketing concept that states electronic information exchange mechanism. Physical constraints do not interrupt selling and buying mechanism in this environment.This space is constructed through online facility of technology.
Market space provides the service to customer as well as seller to display their requirements and accordingly interact for exchanging the product with payment. Both the parties agree on time location and transaction method for buying and selling.
Answer: 8.1 msec.
Explanation:
If we are told that we have a transmission link of sending 10 Mbits in one second, setting up a direct proportion, we can find out how much time is needed to send 4096 bits along the same channel, as follows:
10⁶ bits = 1 sec
4096 bits = x ⇒ x = 4096 bits. 1 sec / 10⁶ bits = 4.1 msec.
As we have 4 msec of latency between sender and the receiver, we need to add these 4 msec to the transit time, so we have a total message transmission time of 8.1 msec.