Answer:
Explanation:
First, we find the mass of the air originally in the tank.
Density is given as mass divided by volume. It is given as:

Therefore, mass is:

Density of air =
; Volume of the tank = 

The mass of the air initially in the tank is 7 kg.
After air is allowed to enter, the mass changes.
New density = 
The new mass will be:

We can now find the mass of air that has entered the tank:
Mass of air that entered tank = New mass of air - Original mass of air
M = 22.75 - 7.0 = 15.75 kg
The mass of air that entered the tank is 15.75 kg.
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.
Answer:
The level of service of of compound grade freeway is LOSB.
Explanation:
Find the provided attachments for explanation
Answer:
(b)False
Explanation:
Given:
Prandtl number(Pr) =1000.
We know that 
Where
is the molecular diffusivity of momentum
is the molecular diffusivity of heat.
Prandtl number(Pr) can also be defined as

Where
is the hydrodynamic boundary layer thickness and
is the thermal boundary layer thickness.
So if Pr>1 then hydrodynamic boundary layer thickness will be greater than thermal boundary layer thickness.
In given question Pr>1 so hydrodynamic boundary layer thickness will be greater than thermal boundary layer thickness.
So hydrodynamic layer will be thicker than the thermal boundary layer.