Answer:
Q = 125.538 W
Explanation:
Given data:
D = 30 cm
Temperature degree celcius
Heat coefficient = 12 W/m^2 K
Efficiency 80% = 0.8
Q = 125.538 W
You can see and download from the link
https://tlgur.com/d/GYYVL5lG
Please don't forget to put heart ♥️
Answer:
Answer is c Heisenberg's uncertainty principle
Explanation:
According to Heisenberg's uncertainty principle there is always an inherent uncertainty in measuring the position and momentum of a particle simultaneously.
Mathematically
here 'h' is planck's constant
Answer:
n=2.32
w= -213.9 KW
Explanation:
Mass of air=1 kg
For polytropic process ,n is the polytropic constant.
n=2.32
Work in polytropic process given as
w=
w=
Now by putting the values
w=
w= -213.9 KW
Negative sign indicates that work is given to the system or work is done on the system.
For T_V diagram
We can easily observe that when piston cylinder reach on new position then volume reduces and temperature increases,so we can say that this is compression process.
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));
}
}