Answer:
The hardenability increases with increasing austenite grain size, because the grain boundary area is decreasing. This means that the sites for the nucleation of ferrite and pearlite are being reduced in number, with the result that these transformations are slowed down, and the hardenability is therefore increased.
B is the answer I believe so
Answer:
B
Explanation:
it's does not transmit any energy
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: c) 450 kPa
Explanation:
Boyle's Law: This law states that pressure is inversely proportional to the volume of the gas at constant temperature and number of moles.
(At constant temperature and number of moles)
where,
= initial pressure of gas = 150 kPa
= final pressure of gas = ?
= initial volume of gas = v L
= final volume of gas =
Therefore, the new pressure of the gas will be 450 kPa.