Answer:
Business activities may broadly be classified into two categories namely (A) Industry and (B) Commerce. Industry involves production of goods and services whereas commerce is concerned with the distribution of goods and services.
Explanation:
hope helps
Answer:
import java.util.*;
public class Main {
public static void main(String[] args) {
double milesPerGallon = 0;
int totalMiles = 0;
int totalGallons = 0;
double totalMPG = 0;
Scanner input = new Scanner(System.in);
while(true){
System.out.print("Enter the miles driven: ");
int miles = input.nextInt();
if(miles <= 0)
break;
else{
System.out.print("Enter the gallons used: ");
int gallons = input.nextInt();
totalMiles += miles;
totalGallons += gallons;
milesPerGallon = (double) miles/gallons;
totalMPG = (double) totalMiles / totalGallons;
System.out.printf("Miles per gallon for this trip is: %.1f\n", milesPerGallon);
System.out.printf("Total miles per gallon is: %.1f\n", totalMPG);
}
}
}
}
Explanation:
Initialize the variables
Create a while loop that iterates until the specified condition is met inside the loop
Inside the loop, ask the user to enter the miles. If the miles is less than or equal to 0, stop the loop. Otherwise, for each trip do the following: Ask the user to enter the gallons. Add the miles and gallons to totalMiles and totalGallons respectively. Calculate the milesPerGallon (divide miles by gallons). Calculate the totalMPG (divide totalMiles by totalGallons). Print the miles per gallon and total miles per gallon.
Explanation:
The two types of furnaces used in steel production are:
<u>Basic oxygen furnace </u>
In basic oxygen furnace, iron is combined with the varying amounts of the steel scrap and also small amounts of the flux in the Blast Furnace. Lance is introduced in vessel and blows about 99% of the pure oxygen causing rise in temperature to about 1700°C. This temperature melts scrap and the impurities are oxidized and results in the liquid steel.
<u>Electric arc furnace</u>
Electric arc furnace reuses existing steel. Furnace is charged with the steel scrap. It operates on basis of electrical charge between the two electrodes providing heat for process. Power is supplied through electrodes placed in furnace, which produce arc of the electricity through scrap steel which raises temperature to about 1600˚C. This temperature melts scrap and the impurities can be removed through use of the fluxes and results in the liquid steel.
Answer:
atomic percentage = 143 %
Explanation:
Let x be the number of tin atoms and there are 4 atoms / cell in the FCC structure , then 4 -x be the number of copper atoms . Therefore, the value of x can be determined by using the density equation as shown below:

where;
the lattice parameter is given as : 4.7589 × 10⁻⁸ cm
The atomic mass of tin is 118.69 g/mol
The atomic mass of copper is 63.54 g/mol
The density is 8.772 g/cm³

569.32 = 118.69x + 254.16-63.54x
569.32 - 254.16 = 118.69x - 63.54 x
315.16 = 55.15x
x = 315.16/55.15
x = 5.72 atoms/cell
As there are four atoms per cell in FCC structure for the metal, thus, the atomic percentage of the tin is calculated as follows :
atomic % = 
atomic % = 
atomic % = 143 %