Answer:
The grinding machine is used for roughing and finishing flat, cylindrical, and conical surfaces; finishing internal cylinders or bores; forming and sharpening cutting tools; snagging or removing rough projections from castings and stampings; and cleaning, polishing, and buffing surfaces.
Most minerals can be characterized and classified by their unique physical properties: hardness, luster, color, streak, specific gravity, cleavage, fracture, and tenacity.
<em>-</em><em> </em><em>BRAINLIEST</em><em> answerer</em><em> ❤️</em><em>✌</em>
Answer:
<h2>Steel</h2>
Explanation:
Steel is the metal that using in planes.
Aluminum and titanium also used in this aircraft industry.
Aluminum is ideal for aircraft manufacture because it's lightweight and strong.
<em>hope</em><em> </em><em>this</em><em> </em><em>helps</em><em>!</em><em>!</em>
<em>have</em><em> </em><em>a</em><em> </em><em>nice</em><em> </em><em>day</em><em>!</em>
<em>follow</em><em> </em><em>me</em><em> </em><em>=</em><em>=</em><em>></em><em> </em><em>Hi1315</em>
Answer:what are you trying to say
Explanation:
Answer:
public static int average(int j, int k) {
return (int)(( (long)(i) + (long)(j) ) /2 );
}
Explanation:
The above code returns the average of two integer variables
Line 1 of the code declares a method along with 2 variables
Method declared: average of integer data type
Variables: j and k of type integer, respectively
Line 2 calculates the average of the two variables and returns the value of the average.
The first of two integers to average is j
The second of two integers to average is k
The last parameter ensures average using (j+k)/2