Answer:
Have the power company install insulated sleeves (also known as “eels”) over power lines.
Wearing PPE is the only way to prevent being electrocuted
Explanation:
To prevent electrocution at workplace, employers can ensure that the power company install insulated sleeves (also known as “eels”) over power lines. Additionally, the employees should wear PPEs which are insulators to prevent electrocution.
Answer:
Q = 424523.22 kw
Explanation:

k = 48.9 W/m - K
c = 0.115 KJ/kg- K


T_∞ = 35 degree celcius
velocity of air stream = 15 m/s
D = 40 cm
L = 200 cm
mass flow rate




solving for h

h = 675.6 kw/m^2K

Q = 675.6*2.513*(285-35)
Q = 424523.22 kw
To put out a class D metal fire, you must smother the fire and eliminate the oxygen element in the fire.
<h3>What is a Class D fire?</h3>
A class D fire is a type of fire that cannot be extinguished by water. This is because adding water to it reacts with other elements in the fire intensifying the fire even more.
Smothering in this context involves adding a solution like carbon dioxide (CO2) into the fire, this results in a reduction of oxygen in the atmosphere surrounding the class D fire.
By so doing, smothering the fire eliminates the oxygen element in the fire, thereby extinguishing the fire.
You can learn more about extinguishing fires here https://brainly.in/question/760550
#SPJ1
Answer:
The power developed in HP is 2702.7hp
Explanation:
Given details.
P1 = 150 lbf/in^2,
T1 = 1400°R
P2 = 14.8 lbf/in^2,
T2 = 700°R
Mass flow rate m1 = m2 = m = 11 lb/s Q = -65000 Btu/h
Using air table to obtain the values for h1 and h2 at T1 and T2
h1 at T1 = 1400°R = 342.9 Btu/h
h2 at T2 = 700°R = 167.6 Btu/h
Using;
Q - W + m(h1) - m(h2) = 0
W = Q - m (h2 -h1)
W = (-65000 Btu/h ) - 11 lb/s (167.6 - 342.9) Btu/h
W = (-65000 Btu/h ) - (-1928.3) Btu/s
W = (-65000 Btu/h ) * {1hr/(60*60)s} - (-1928.3) Btu/s
W = -18.06Btu/s + 1928.3 Btu/s
W = 1910.24Btu/s
Note; Btu/s = 1.4148532hp
W = 2702.7hp
Answer:
import java.util.Scanner;
public class FindMatchValue {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
final int NUM_VALS = 4;
int[] userValues = new int[NUM_VALS];
int i;
int matchValue;
int numMatches = -99; // Assign numMatches with 0 before your for loop
matchValue = scnr.nextInt();
for (i = 0; i < userValues.length; ++i) {
userValues[i] = scnr.nextInt();
}
/* Your solution goes here */
numMatches = 0;
for (i = 0; i < userValues.length; ++i) {
if(userValues[i] == matchValue) {
numMatches++;
}
}
System.out.println("matchValue: " + matchValue + ", numMatches: " + numMatches);
}
}