Answer:
stress = 50MPa
Explanation:
given data:
Length of strain guage is 5mm
displacement
stress due to displacement in structural steel can be determined by using following relation
where E is young's modulus of elasticity
E for steel is 200 GPa
stress = 50MPa
Answer:
c) can be made with a variety of surface finishes.
Explanation:
The missing options are;
When it comes to concrete work in construction, the concrete can be cast either in-situ or in form of pre-cast concrete.
Now in-situ concrete means concrete done on the construction site being built while pre cast concrete simply means concrete cast outside in a factory or yard and brought to site to mount.
These pre cast concrete could have different surface finishes as required as this is one of it's advantages over in situ because there is a lot of space and room to have the desired concrete finish.
a) are typically manufactured on site and then hoisted into place.
b) cannot be fiber-reinforced.
c) can be made with a variety of surface finishes.
d) never include insulation.
e) often are unreinforced.
- the last one ‘design meets all the criteria...’
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:
The type of boot authentication that is more secure is Unified Extensible Firmware Interface
Unified Extensible Firmware Interface help to provide a computer booting that is more secured.
Unified Extensible Firmware Interface is a computer software program that work hand in hand with an operating system, it main function is to stop a computer system from boot with an operating system that is not secured.
For a computer system to boot successfully it means that the Operating system support the Unified Extensible Firmware Interface because it secured.
Inconclusion The type of boot authentication that is more secure is Unified Extensible Firmware Interface
Learn more here :
brainly.com/question/24750986