Neither, I would choose a PC because normally with PlayStation and Xbox you have to go to the store to buy more games when on a PC there are some games for free
To solve this problem it is necessary to apply the concepts related to density in relation to mass and volume for each of the states presented.
Density can be defined as
Where
m = Mass
V = Volume
For state one we know that
For state two we have to
Therefore the total change of mass would be
Therefore the mass of air that has entered to the tank is 6.02Kg
Answer:
As a worker, it is important to follow the proper set of instructions or emergency plans during an emergent situation. Not carefully following the rules may result to a bigger problem such as further injury and damage to property.
Explanation:
Evacuation Procedure- This is a step-by-step procedure that people follow in order to safely vacate any building or place. This procedure is applicable to any situation, such as the workplace. This is now called the <em>Workplace Evacuation Procedure. </em>This is very important because there are so many unpredictable situations or events that are happening in the world right now, such as fire or earthquake. This procedure is being done through an evacuation plan.
The awareness of the workers regarding the proper way to evacuate during emergency situation is very important. It will be easier for them to know where to locate the nearest exit route. They will also learn to stop any form of device or equipment that could cause a hazzard during the situation. In case of the hospital, which is also a workplace, the employees will also learn how to assist the patients before themselves. They will also know where to assemble if there's a need to do so.
Answer:
Process of Green Revolution
Explanation:
Green Revolution is a process which started its initiatives between the 1950s and 1960s, a technological research process, that increase agricultural productions through various systematic approach, which are different from the traditional methods. These technological approach includes:
1. Utilization of new varieties with a high yield potential, in addition with adequate water supply, pesticides and fertilizers.
2. New methods of cultivation and mechanization
Hence, the process of Green Revolution boosted production of fertilizers and strengthen the agriculture industry as a whole.
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.