Answer:
All machines have three fundamental hazards: moving parts, point of operation, and the power transmission.
Explanation:
The unit that supplies power to the machine is a critical hazard due to high energy sources being potential fatal if proper protocols are not followed. This is why lockout tagout (LOTO) measures are put in place in order to protect people while they work on equipment.
Explanation:Image result for buildings designed to partially heat rooms by passive solar heating rely on
A strictly passive design will use the three natural heat transfer modes exclusively—conduction, convection, and radiation. In some applications, however, fans, ducts, and blowers may help with the distribution of heat through the building
Answer:
can you plz write in English language so we can give you answer
Answer:
public static int average(int j, int k) {
return (int)(( (long)(i) + (long)(j) ) /2 );
}
Explanation:
The above code returns the average of two integer variables
Line 1 of the code declares a method along with 2 variables
Method declared: average of integer data type
Variables: j and k of type integer, respectively
Line 2 calculates the average of the two variables and returns the value of the average.
The first of two integers to average is j
The second of two integers to average is k
The last parameter ensures average using (j+k)/2