Answer:
<u>No</u>.
Explanation:
They are not all the same. Moreover, using a fluid that is not approved by the vehicle manufacturer will void the transmission warranty.
I say the answers is A but if you mean ventilation in the area of the room then answer B
Hey! How are you? My name is Maria, 19 years old. Yesterday broke up with a guy, looking for casual sex.
Write me here and I will give you my phone number - *pofsex.com*
My nickname - Lovely
Answer:
ω=314.15 rad/s.
0.02 s.
Explanation:
Given that
Motor speed ,N= 3000 revolutions per minute
N= 3000 RPM
The speed of the motor in rad/s given as
Now by putting the values in the above equation
ω=314.15 rad/s
Therefore the speed in rad/s will be 314.15 rad/s.
The speed in rev/sec given as
ω= 50 rev/s
It take 1 sec to cover 50 revolutions
That is why to cover 1 revolution it take
Answer:
//The program prompts user to input three integers and it displays them, adds and gets their average
//begin
public class Test
{
public static void Main()
{
//input intergers
int[] score = new int[3];
int avg,rem,sum = 0;
for(int i=0;i<3;i++)
{
Console.WriteLine("Enter an integer score ");
score[i] = Convert.ToInt32(Console.ReadLine());
sum = sum + score[i];
}
avg = sum/3;
rem = sum%3;
Console.WriteLine("The average of "+score[0]+","+score[1]+","+score[2]+" is "+avg +" with a remainder of "+rem);
}
}