Solution :
Given :
External diameter of the hemispherical shell, D = 500 mm
Thickness, t = 20 mm
Internal diameter, d = D - 2t
= 500 - 2(20)
= 460 mm
So, internal radius, r = 230 mm
= 0.23 m
Density of molten metal, ρ = 
= 
The height of pouring cavity above parting surface is h = 300 mm
= 0.3 m
So, the metallostatic thrust on the upper mold at the end of casting is :

Area, A 




= 7043.42 N
Answer:
#include <iostream>
#include <string>
using namespace std;
bool isPalindrome(string str)
{
int length = str.length();
for (int i = 0; i < length / 2; i++)
{
if (tolower(str[i]) != tolower(str[length - 1 - i]))
return false;
}
return true;
}
int main()
{
string s[6] = {"madam", "abba", "22", "67876", "444244", "trymeuemyrt"};
int i;
for(i=0; i<6; i++)
{
//Testing function
if(isPalindrome(s[i]))
{
cout << "\n " << s[i] << " is a palindrome... \n";
}
else
{
cout << "\n " << s[i] << " is not a palindrome... \n";
}
}
return 0;
}
Why did you put this on here when you know the answer lol
Answer:
The corresponding absolute pressure of the boiler is 24.696 pounds per square inch.
Explanation:
From Fluid Mechanics, we remember that absolute pressure (
), measured in pounds per square inch, is the sum of the atmospheric pressure and the working pressure (gauge pressure). That is:
(1)
Where:
- Atmospheric pressure, measured in pounds per square inch.
- Working pressured of the boiler (gauge pressure), measured in pounds per square inch.
If we suppose that
and
, then the absolute pressure is:


The corresponding absolute pressure of the boiler is 24.696 pounds per square inch.
Answer:
Low ambient temperature
Explanation:
Hope this helps. If it did, please mark as brianliest so other people see it. Thanks! - Kai