<h3>
Answer:</h3><h3><em>1. Ask questions</em></h3><h3><em>2. Thank the interviewer for their time </em></h3><h3>
Explanation:</h3>
1<em>. When the interviewer asked if you have any questions at the end of the interview don't say no. You should always say yes your interviewer is expecting you to ask a few good questions before ending the interview. </em>
<h3><em /></h3>
<em>2. Always thank the interviewer for their time and effort to interview you. This would look very good for you and its a nice way to help wrap up the interview. </em>
Answer:
The limits of the hole size are;
The maximum limit of the hole diameter 0.255
The minimum limit of the hole diameter = 0.245
Explanation:
Tolerance is a standardized form of language that can be used to define the intended 'tightness' or 'clearance' degree between mating parts in a mechanical assembly process and in metal joining processes such as welding and brazing processes
In tolerancing, the size used in the description of a part is known as the nominal size while allowable variation of the nominal size that will still allow the part to function properly is known as the tolerance
A tolerance given in the form ±P is known as bilateral tolerancing, with the value being added to or subtracted from the nominal size to get the maximum and minimum allowable limits of the dimensions of the nominal size
Therefore;
The given nominal dimension of the hole diameter = 0.250
The bilateral tolerance of the dimension, = ±0.005
Therefore;
The maximum limit of the diameter of the hole = 0.250 + 0.005 = 0.255
The minimum limit of the diameter of the hole = 0.250 - 0.005 = 0.245
Answer:
Tech A is correct
Explanation:
Tech A is right as its V- angle is identified by splitting the No by 720 °. Of the piston at the edge of the piston.
Tech B is incorrect, as the V-Angle will be 720/10 = 72 for the V-10 motor, and he says 60 °.
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: