Answer:
D
Explanation:
took test failed question D is the right answer
Answer:
The speed of shaft is 1891.62 RPM.
Explanation:
given that
Amplitude A= 0.15 mm
Acceleration = 0.6 g
So
we can say that acceleration= 0.6 x 9.81
We know that
So now by putting the values
We know that
ω= 2πN/60
198.0=2πN/60
N=1891.62 RPM
So the speed of shaft is 1891.62 RPM.
Answer:
QPSK: 7.5 MHz
64-QAM:2.5 MHz
64-Walsh-Hadamard: 160 MHz
Explanation:
See attached picture.
Answer:
The temperature T= 648.07k
Explanation:
T1=input temperature of the first heat engine =1400k
T=output temperature of the first heat engine and input temperature of the second heat engine= unknown
T3=output temperature of the second heat engine=300k
but carnot efficiency of heat engine =
where Th =temperature at which the heat enters the engine
Tl is the temperature of the environment
since both engines have the same thermal capacities <em> </em> therefore
We have now that
multiplying through by T
multiplying through by 300
-
The temperature T= 648.07k
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));
}
}