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:
2.7g
Explanation:
the mass of a brass axle that has a volume of 0.318 cm is 2.7g.
Answer:
Aqueous solution of ionic compounds conduct electricity while solid ionic compounds don't.
Explanation:
Ionic compound conduct electricity when liquid or in aqueous solution that is resolved in water because the ionic bonds of the compound become weak and the ions are free to move from place to place.
Ionic compounds don't conduct electricity while in solid state because the ionic bonds are to strong and ions cannot move around with lack of space for movement which makes the electric conductivity zero.
Okay sure.
I’ll 1)chords
2)pulse
3)aerophone
4) the answer is C
5)rhythm
Pretty sure those are the answers
Hi, you haven't provided the programing language in which you need the code, I'll just explain how to do it using Python, and you can apply a similar method for any programming language.
Answer:
1. def pyramid_volume(base_length, base_width, pyramid_height):
2. volume = base_length*base_width*pyramid_height/3
3. return(volume)
Explanation step by step:
- In the first line of code, we define the function pyramid_volume and it's input parameters
- In the second line, we perform operations with the input values to get the volume of the pyramid with a rectangular base, the formula is V = l*w*h/3
- In the last line of code, we return the volume
In the image below you can see the result of calling the function with input 4.5, 2.1, 3.0.