Answer:
Stress corrosion cracking
Explanation:
This occurs when susceptible materials subjected to an environment that causes cracking effect by the production of folds and tensile stress. This also depends upon the nature of the corrosive environment.
Factors like high-temperature water, along with Carbonization and chlorination, static stress, and material properties.
Answer:
The correct answer is 'velocity'of liquid flowing out of an orifice is proportional to the square root of the 'height' of liquid above the center of the orifice.
Explanation:
Torricelli's theorem states that

where
is the velocity with which the fluid leaves orifice
is the head under which the flow occurs.
Thus we can compare the given options to arrive at the correct answer
Velocity is proportional to square root of head under which the flow occurs.
ANSWERS:

Explanation:
Given:
Piston cylinder assembly which mean that the process is constant pressure process P=C.
<u>AMMONIA </u>
state(1)
saturated vapor 
The temperature 
Isothermal process 
a)
( double)
b)
(reduced by half)
To find the final state by giving the quality in lbf/in we assume the friction is neglected and the system is in equilibrium.
state(1)
using PVT data for saturated ammonia

then the state exists in the supper heated region.
a) from standard data



assume linear interpolation


b)

from standard data

then the state exist in the wet zone


Answer:
the pressure at a closed valve attached to the tank 10 ft above its bottom is 37.88 psi
Explanation:
Given that;
depth 1 = 71 ft
depth 2 = 10 ft
pressure p = 17 psi = 2448 lb/ft²
depth h = 71 ft - 10 ft = 61 ft
we know that;
p = P_air + yh
where y is the specific weight of ethyl alcohol ( 49.3 lb/ft³ )
so we substitute;
p = 2448 + ( 49.3 × 61 )
= 2448 + 3007.3
= 5455.3 lb/ft³
= 37.88 psi
Therefore, the pressure at a closed valve attached to the tank 10 ft above its bottom is 37.88 psi
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}