Answer:
The pressure that will cause yielding in the tank in the longitudinal direction is 1.7 Mpa
Explanation:
We are dealing with a thin-walled pressure vessel here.
the formula for calculating the hoops stress of this pressure vessel is 
longitudinal yield stress = 
Thickness = 2/1000 =0.002m
Outside diameter = inside siameter + thickness = 2m + 0.002m= 2.002m
Dm = Mean diameter = Outside diameter - thickness = 2.002 - 0.002 = 2m

Explanation:
उह्ह्नमजज्ल्ह्ह्बनुतनकुहक्जो
Answer:
public static int average(int j, int k) {
return (int)(( (long)(i) + (long)(j) ) /2 );
}
Explanation:
The above code returns the average of two integer variables
Line 1 of the code declares a method along with 2 variables
Method declared: average of integer data type
Variables: j and k of type integer, respectively
Line 2 calculates the average of the two variables and returns the value of the average.
The first of two integers to average is j
The second of two integers to average is k
The last parameter ensures average using (j+k)/2
Answer:
A: True
Explanation:
The given statement is true.
Answer:
first step here is to substitute the 3 of your two equations into the second;
3 Ne^(-Q_v/k(1293)) = Ne^(-Q_v/k(1566))
Since 'N' is a constant, we can remove it from both sides.
We also want to combine our two Q_v values, so we can solve for Q_v, so we should put them both on the same side:
3 = e^(-Q_v/k(1293)) / e^(-Q_v/k(1566))
3 = e^(-Q_v/k(1293) + Q_v/k(1566) ) (index laws)
ln (3) = -Q_v/k(1293) + Q_v/k(1566) (log laws)
ln (3) = -0.13Q_v / k(1566) (addition of fractions)
Q_v = ln (3)* k * 1566 / -0.13 (rearranging the equation)
Now, as long as you know Boltzmann's constant it's just a matter of substituting it for k and plugging everything into a calculator.