1)<u> </u><u>An opening conference. The opening conference is a brief meeting during which the OSHA inspector will explain the purpose of the inspection.</u>
2) <u>A worksite “walkaround” The walkaround is the actual inspection.</u>
3) <u>A closing conference.</u>
Answer:
Great starter programming language. Overall very powerful but for beginners the more advanced characteristics like GUIs are too complicated. This is coming from personal experience and after first experiencing programming through Python, Javascript is my new favorite.
Explanation:
a great video by code camp titled "Learn Python - Full Course for Beginners [Tutorial]" is a great starting point!
Answer:
I do not understand can you type in English?
Explanation:
Answer:
def scramble(s):
if len(s) % 2 == 1:
index = int(len(s)//2)
else:
index = int(len(s)/2)
return s[index:] + s[:index]
Explanation:
Create a function called scramble that takes one parameter, s
Check the length of the s using len function. If the length is odd, set the index as the floor of the length/2. Otherwise, set the index as length/2. Use index value to slice the s as two halves
Return the second half of the s and the second half of the s using slice notation (s[index:] represents the characters from half of the s to the end, s[:index] represents the characters from begining to the half of the s)
Answer:
a. Utilization = 0.00039
b. Throughput = 50Kbps
Explanation:
<u>Given Data:</u>
Packet Size = L = 1kb = 8000 bits
Transmission Rate = R = 1 Gbps = 1 x 10⁹ bps
RTT = 20 msec
<u>To Find </u>
a. Sender Utilization = ?
b. Throughput = ?
Solution
a. Sender Utilization
<u>As Given </u>
Packet Size = L = 8000 bits
Transmission Rate = R = 1 Gbps = 1 x 10⁹ bps
Transmission Time = L/R = 8000 bits / 1 x 10⁹ bps = 8 micro-sec
Utilization = Transmission Time / RTT + Transmission Time
= 8 micro-sec/ 20 msec + 8 micro-sec
= 0.008 sec/ 20.008 sec
Utilization = 0.00039
b. Throughput
<u>As Given </u>
Packet Size = 1kb
RTT = 20ms = 20/100 sec = 0.02 sec
So,
Throughput = Packet Size/RTT = 1kb /0.02 = 50 kbps
So, the system has 50 kbps throughput over 1 Gbps Link.