Explanation:
Step1
Lehr is the long open or closed insulated space for glass manufacturing. Lehr must be large enough to keep the cooling of glass uniform. The function of Lehr is the same as an annealing process in metallurgy.
Step2
Lehr decrease the cooling and temperature variation in glass production. Uneven temperature creates the internal stress in the glass. Lehr reduces the internal stress in the glass product. So, the main purpose of the Lehr is to reduce the internal stress and keep the cooling uniform.
Answer:
2.65 MPa
Explanation:
To find the normal stress (σ) in the wall of the basketball we need to use the following equation:

<u>Where:</u>
p: is the gage pressure = 108 kPa
r: is the inner radius of the ball
t: is the thickness = 3 mm
Hence, we need to find r, as follows:

<u>Where:</u>
d: is the outer diameter = 300 mm

Now, we can find the normal stress (σ) in the wall of the basketball:
Therefore, the normal stress is 2.65 MPa.
I hope it helps you!
Answer:
The level of the service is loss and the density is 34.2248 pc/mi/ln
Explanation:
the solution is attached in the Word file
Answer:
#include<iostream>
using namespace std;
int main()
{
double data[3][5],avg,least,most,total;
int leastNum,mostNum;
for(int i=0;i<3;i++)
{
cout<<"Enter quantity of food for monkey "<<i+1<<":\n";
for(int j=0;j<5;j++)
{
cout<<"Day "<<j+1<<": ";
cin>>data[i][j];
}
}
least = data[0][0];
most = data[0][0];
for(int i = 0;i<3;i++)
{
for(int j = 0;j<5;j++)
{
total+=data[i][j];
if(data[i][j]>most)
{
most=data[i][j];
mostNum=i+1;
}
if(data[i][j]<least)
{
least=data[i][j];
leastNum=i+1;
}
}
}
avg=total/5.0;
cout<<"Average food eaten in a day by all the 3 monkeys: "<<avg<<endl;
cout<<"Most amount of food eaten in a day: "<<most<<" by monkey: "<<mostNum<<endl;
cout<<"Least amount of food eaten in a day: "<<least<<" by monkey: "<<leastNum<<endl;
return 0;
}