Answer:
Iron is manufactured in a blast furnace. First, iron ore is mixed with coke and heated to form an iron-rich clinker called 'sinter'. Sintering is an important part of the overall process as it reduces waste and provides an efficient raw material for iron making. Coke is produced from carefully selected grades of coal.
Copper is typically extracted from oxide and sulfide ores that contain between 0.5 and 2.0% copper. ... Regardless of the ore type, mined copper ore must first be concentrated to remove gangue or unwanted materials embedded in the ore. The first step in this process is crushing and powdering ore in a ball or rod mill.
Answer:
draw it 3D
Explanation:
because it's a 3D picture
Answer:
specialist focus in one very specific thing, generalist focus and many things, they are like a jack of all trades
Answer:
OMG YOU SPEAK THE I LIKE UR CUT G LANGUAGE
Explanation:
wow ugyfufuyyy yufyufufyu yufuyyuuy uyyfufufu
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