Answer:
h = 287.1 m
Explanation:
the density of mercury \rho =13570 kg/m3
the atmospheric pressure at the top of the building is

the atmospheric pressure at bottom


we have also

1.18*9.81*h = (100.4 -97.08)*10^3
h = 287.1 m
Answer:
The spring is compressed by 0.275 meters.
Explanation:
For equilibrium of the gas and the piston the pressure exerted by the gas on the piston should be equal to the sum of weight of the piston and the force the spring exerts on the piston
Mathematically we can write

we know that


Now the force exerted by an spring compressed by a distance 'x' is given by 
Using the above quatities in the above relation we get

Answer:
Sealing agent
Explanation:
Generally, when we have water leaks in almost any building or equipment, we use a sealant. However, this sealant could be of different types depending on the peculiarity of the leakage.
Thus, the correct answer is sealing agent.
Answer:
import java.util.Scanner;
public class InputExample {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
int birthMonth;
int birthYear;
birthMonth = scnr.nextInt();
birthYear = scnr.nextInt();
System.out.println(birthMonth+"/"+birthYear);
}
}