C. Both; require a wheel alignment after replacement
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
Answer:
see explaination
Explanation:
import java.util.InputMismatchException;
import java.util.Scanner;
public class calculate {
static float a=0,b=0;
double cal()
{
if(a==0||b==0)
{
System.out.println("no values found in a or b");
start();
}
double x=(a*a)+(b*b);
double h=Math.sqrt(x);
a=0;
b=0;
return h;
}
float enter()
{
float val=0;
try
{
System.out.println("Enter side");
Scanner sc1 = new Scanner(System.in);
val = sc1.nextFloat();
return val;
}
catch(InputMismatchException e)
{
System.out.println("Enter correct value");
}
return val;
}
void start()
{
calculate c=new calculate();
while(true)
{
System.out.println("Enter Command");
Scanner sc = new Scanner(System.in);
String input = sc.nextLine();
switch(input)
{
case "A":
a=c.enter();
break;
case "B":
b=c.enter();
break;
case "C":
double res=c.cal();
System.out.println("Hypotenuse is : "+res);
break;
case "Q":
System.exit(0);
default:System.out.println("wrong command");
}
}
}
public static void main(String[] args) {
calculate c=new calculate();
c.start();
}
}
Answer:
a)Δs = 834 mm
b)V=1122 mm/s

Explanation:
Given that

a)
When t= 2 s


s= 114 mm
At t= 4 s


s= 948 mm
So the displacement between 2 s to 4 s
Δs = 948 - 114 mm
Δs = 834 mm
b)
We know that velocity V


At t= 5 s


V=1122 mm/s
We know that acceleration a


a= 90 t
a = 90 x 5
