Answer:
Explanation:
You'll still need wrenches, sockets and screwdrivers, but there are other things that it may be necessary to buy to complete the work.
Spring Compressor. One part of suspension repair is replacing coil springs.
Hydraulic Puller. -Hydraulic pullers are used to remove shaft-fitted parts (bearings or couplings). Pullers use a controlled hydraulic force in an effective way and can quickly separate (especially compared to the manual alternative) the parts.
CV Boot Tool. he CV Boot is a ribbed, rubber flexible boot that keeps water and dirt out of the joint and the special grease inside the joint.
Torque Wrench. .A torque wrench is a tool used to apply a specific torque to a fastener such as a nut, bolt, or lag screw. ... A torque wrench is used where the tightness of screws and bolts is crucial.
Ball Joint Separator. This tool is used to separate the ball joint from the spindle support arm. It works on many domestic and import front wheel drive vehicles and is adjustable up to 2" for different size ball joints.
Strut Nuts.
Tie Rod Puller.
etc....
Answer:

Explanation:
Density is defined as mass ler unit volume, expressed as

Where m is mass,
is density and v is the volume. For a sphere, volume is given as

Replacing this into the formula of density then

Given diameter of 2.24 in then the radius is 1.12 in. Substituting 0.82 lb for m then

Answer & Explanation:
//written in java
public class Main {
public static void main(String[] args) {
//declare a char variable for a, b, c
char a;
char b;
char c;
//assign a b and c
//a b and c can be replaced for with
// '#', '$', '%', then with '1', '2', '3'
// for further testing
a = 'x';
b = 'y';
c = 'z';
//output for all possible combination for a, b, c.
System.out.println("" + a + b + c + " " + a + c + b + " " + b + a + c +
" " + b + c + a + " " + c + a + b + " " + c + b + a);
}
}
Answer:
The theoretical density for Niobium is
.
Explanation:
Formula used :

where,
= density of the unit cell
Z = number of atom in unit cell
M = atomic mass
= Avogadro's number
a = edge length of unit cell
We have :
Z = 2 (BCC)
M = 92.91 g/mol ( Niobium)
Atomic radius for niobium = r = 0.143 nm
Edge length of the unit cell = a
r = 0.866 a (BCC unit cell)


On substituting all the given values , we will get the value of 'a'.


The theoretical density for Niobium is
.
Answer:
import java.util.Scanner;
public class AssigningNumberToVariable {
public static void main (String [] args) {
int numPeople;
int numPeople_inc;
numPeople = 10;
/* solution */
numPeople_inc=numPeople+5;
System.out.print("There are ");
System.out.print(numPeople_inc);
System.out.println(" people.");
}
}
Explanation:
1. Declare a new variable called: numPeople_inc
2. Add 5 each time: numPeople_inc=numPeople+5;
3. Print the answer: numPeople_inc=numPeople+5;
Optional, just write the line in the place where says: " your solutions goes here":
numPeople = numPeople+5;