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:
Absolute pressure=70.72 KPa
Explanation:
Given that Vacuum gauge pressure= 30 KPa
Barometer reading =755 mm Hg
We know that barometer always reads atmospheric pressure at given situation.So atmospheric pressure is equal to 755 mm Hg.
We know that P= ρ g h
Density of
So P=13600 x 9.81 x 0.755
P=100.72 KPa
We know that
Absolute pressure=atmospheric pressure + gauge pressure
But here given that 30 KPa is a Vacuum pressure ,so we will take it as negative.
Absolute pressure=atmospheric pressure + gauge pressure
Absolute pressure=100.72 - 30 KPa
So
Absolute pressure=70.72 KPa
Row choice the cost of roadway improvements to the developer and functional the amount of trafficBeing generated by the theater as well as the Ralph’s ladies
Answer:
The angle of twist can be computed using the material’s shear modulus if and only if the shear stress is still in the elastic region
Explanation:
The shear modulus (G) is the ratio of shear stress to shear strain. Like the modulus of elasticity, the shear modulus is governed by Hooke’s Law: the relationship between shear stress and shear strain is proportional up to the proportional limit of the material. The angle of twist can be computed using the material’s shear modulus if and only if the shear stress is still in the elastic region.
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<