Answer:

Explanation:
The mass inside the rigid tank before the high pressure stream enters is:



The final mass inside the rigid tank is:



The supplied air mass is:



Answer:
Program that removes all spaces from the given input
Explanation:
// An efficient Java program to remove all spaces
// from a string
class GFG
{
// Function to remove all spaces
// from a given string
static int removeSpaces(char []str)
{
// To keep track of non-space character count
int count = 0;
// Traverse the given string.
// If current character
// is not space, then place
// it at index 'count++'
for (int i = 0; i<str.length; i++)
if (str[i] != ' ')
str[count++] = str[i]; // here count is
// incremented
return count;
}
// Driver code
public static void main(String[] args)
{
char str[] = "g eeks for ge eeks ".toCharArray();
int i = removeSpaces(str);
System.out.println(String.valueOf(str).subSequence(0, i));
}
}
Answer:
18 kJ
Explanation:
Given:
Initial volume of air = 0.05 m³
Initial pressure = 60 kPa
Final volume = 0.2 m³
Final pressure = 180 kPa
Now,
the Work done by air will be calculated as:
Work Done = Average pressure × Change in volume
thus,
Average pressure =
= 120 kPa
and,
Change in volume = Final volume - Initial Volume = 0.2 - 0.05 = 0.15 m³
Therefore,
the work done = 120 × 0.15 = 18 kJ
Answer: heat loss through wall is 16.58034kW
Temperature of inside wall surface is 47°c
Temperature of outside wall surface is -2.7°c
Explanation:detailed calculation and explanation is shown in the image below.
Answer:
(C) passive state.
Explanation:
The earth pressure is the pressure exerted by the soil on the shoring system. They are three types of earth pressure which are:
a) Rest state: In this state, the retaining wall is stationary, this makes the lateral stress to be zero.
b) Active state: In this state, the wall moves away from the back fill, this leads to an internal resistance. Hence the active earth pressure is less than earth pressure at rest
c) Passive state: In this state the wall is pushed towards the back fill, this leads to shearing resistance. Hence, the passive earth pressure is greater than earth pressure at rest