Answer:
a)
, b)
, c) 
Explanation:
a) The deceleration experimented by the commuter train in the first 2.5 miles is:
![a=\frac{[(15\,\frac{mi}{h} )\cdot (\frac{5280\,ft}{1\,mi} )\cdot (\frac{1\,h}{3600\,s} )]^{2}-[(50\,\frac{mi}{h} )\cdot (\frac{5280\,ft}{1\,mi} )\cdot (\frac{1\,h}{3600\,s} )]^{2}}{2\cdot (2.5\,mi)\cdot (\frac{5280\,ft}{1\,mi} )}](https://tex.z-dn.net/?f=a%3D%5Cfrac%7B%5B%2815%5C%2C%5Cfrac%7Bmi%7D%7Bh%7D%20%29%5Ccdot%20%28%5Cfrac%7B5280%5C%2Cft%7D%7B1%5C%2Cmi%7D%20%29%5Ccdot%20%28%5Cfrac%7B1%5C%2Ch%7D%7B3600%5C%2Cs%7D%20%29%5D%5E%7B2%7D-%5B%2850%5C%2C%5Cfrac%7Bmi%7D%7Bh%7D%20%29%5Ccdot%20%28%5Cfrac%7B5280%5C%2Cft%7D%7B1%5C%2Cmi%7D%20%29%5Ccdot%20%28%5Cfrac%7B1%5C%2Ch%7D%7B3600%5C%2Cs%7D%20%29%5D%5E%7B2%7D%7D%7B2%5Ccdot%20%282.5%5C%2Cmi%29%5Ccdot%20%28%5Cfrac%7B5280%5C%2Cft%7D%7B1%5C%2Cmi%7D%20%29%7D)

The time required to travel is:


b) The commuter train must stop when it reaches the station to receive passengers. Hence, speed of train must be
.
c) The final constant deceleration is:


Answer:
Complete question is:
write the following decorators and apply them to a single function (applying multiple decorators to a single function):
1. The first decorator is called strong and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <strong> and </strong> to the argument of the decorator. The return value of the wrapper should look like: return “<strong>” + func() + “</strong>”
2. The decorator will return the wrapper per usual.
3. The second decorator is called emphasis and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <em> and </em> to the argument of the decorator similar to step 1. The return value of the wrapper should look like: return “<em>” + func() + “</em>.
4. Use the greetings() function in problem 1 as the decorated function that simply prints “Hello”.
5. Apply both decorators (by @ operator to greetings()).
6. Invoke the greetings() function and capture the result.
Code :
def strong_decorator(func):
def func_wrapper(name):
return "<strong>{0}</strong>".format(func(name))
return func_wrapper
def em_decorator(func):
def func_wrapper(name):
return "<em>{0}</em>".format(func(name))
return func_wrapper
@strong_decorator
@em_decorator
def Greetings(name):
return "{0}".format(name)
print(Greetings("Hello"))
Explanation:
Answer:
Maximum height=7.3535 m
Explanation:
Solution of the problem is given in the attachments.
Answer:
Technician B
Explanation:
Technician B is correct in his argument. This is because according to what he said, as the computer pulses stimuli the coil will turn on and off, promoting an increase in the voltage that will cause the fluctuation. Technician A is incorrect because the procedure he indicated imposes that the voltage is checked at the negative terminal and not at the positive.