Answer:Yes,266.66 MPa
Explanation:
Given
Yield stress of material =140 MPa
Cross-section of 
Force(F)=8 MN
Therefore stress due to this Force(
)



Since induced stress is greater than Yield stress therefore Plastic deformation occurs
Answer:
The answer is
C. Split phase motor
Explanation:
Clamp meters rely on the principle of magnetic induction to make non contact AC current measurements. Electric current flowing through a wire produces a magnetic field.
Which is similar to basic mode of operation of electric motor and split phase motor is a type of electric motor.
What is a a clamp on meter?
Clamp meters are electrical testers which have wide jaws that are able to clamp around an electrical conductor. Originally designed as a single purpose tool for measuring AC current, clamp meters now include inputs for accepting test leads and other probes that support a wide range of electrical measurements, the jaws of a clamp meter permit work in tight spaces and permits current measurements on live conductors without circuit interruption.
Answer:
False.
Explanation:
False. The pressure is above pressure at critical point (22.064 MPa.), the limit where pressure can prevent boiling.
Answer:
33.56 ft^3/sec.in
Explanation:
Duration = 6 hours
drainage area = 185 mi^2
constant baseflow = 550 cfs
<u>Derive the unit hydrograph using the inverse procedure </u>
first step : calculate for the volume of direct runoff hydrograph using the details in table 2 attached below
Vdrh = sum of drh * duration
= 29700 * 6 hours ( 216000 secs )
= 641,520,000 ft^3.
next step : Calculate the volume of runoff in equivalent depth
Vdrh / Area = 641,520,000 / 185 mi^2
= 1.49 in
Finally derive the unit hydrograph
Unit of hydrograph = drh / volume of runoff in equivalent depth
= 50 ft^3 / 1.49 in = 33.56 ft^3/sec.in
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: