Answer:3.47 m
Explanation:
Given
Temperature(T)=300 K
velocity(v)=1.5 m/s
At 300 K


And reynold's number is given by



x=3.47 m
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:
class TriangleNumbers
{
public static void main (String[] args)
{
for (int number = 1; number <= 10; ++number) {
int sum = 1;
System.out.print("1");
for (int summed = 2; summed <= number; ++summed) {
sum += summed;
System.out.print(" + " + Integer.toString(summed));
}
System.out.print(" = " + Integer.toString(sum) + '\n');
}
}
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.