Answer:
for 1st question the answer is 5th option.
for 2nd question the answer is 2nd option
hope it helps you mate
please mark me as brainliast
Answer:
The correct option is;
B) Metamorphic Rocks
Explanation:
Zoisite, which is also referred to saualpite, is a metamorphic rock which is a hydroxy sorosilicate mineral formed from other types of rocks such as sedimentary, metamorphic and ingenious rocks in the process of their metamorphism under the presence high temperatures and pressures and mineral fluids which are hot
Zoiste is named after Sigmund Zois by Abraham Gottlob Werner in 1805 when Sigmund Zois sent Abraham Gottlob Werner the mineral specimen from Saualpe in 1805
Answer:
T = 15 kN
F = 23.33 kN
Explanation:
Given the data in the question,
We apply the impulse momentum principle on the total system,
mv₁ + ∑
= mv₂
we substitute
[50 + 3(30)]×10³ × 0 + FΔt = [50 + 3(30)]×10³ × ( 45 × 1000 / 3600 )
F( 75 - 0 ) = 1.75 × 10⁶
The resultant frictional tractive force F is will then be;
F = 1.75 × 10⁶ / 75
F = 23333.33 N
F = 23.33 kN
Applying the impulse momentum principle on the three cars;
mv₁ + ∑
= mv₂
[3(30)]×10³ × 0 + FΔt = [3(30)]×10³ × ( 45 × 1000 / 3600 )
F(75-0) = 1.125 × 10⁶
The force T developed is then;
T = 1.125 × 10⁶ / 75
T = 15000 N
T = 15 kN
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));
}
}
The component of a regenerative vapor power cycle that permits only liquid to pass through to a region of lower pressure is a Valve/trap.
<h3>What is vapor?</h3>
- In physics, a substance in the gas phase at a temperature lower than its critical temperature is referred to as a vapor or vapor.
- This means that the vapor can be condensed to a liquid by increasing the pressure on it without decreasing the temperature.
- An aerosol is distinct from a vapor.
- A suspension of minute liquid, solid, or both types of particles in a gas is known as an aerosol.
<h3>Why does vapor form?</h3>
- Evaporation or sublimation are two processes that can be used to create it.
- Unlike clouds, fog, or mist, which are only suspended drops of liquid water in the atmosphere, watevaporur is a gas and cannot be seen.
- In the atmosphere, water vapor frequently exists below the boiling point.
Learn more about vapor here:
brainly.com/question/14578189
#SPJ4