Answer:
safety glasses, hearing protection, respirator, work gloves, and work boots.
Explanation:
please give brainliest!! <3
Answer:
The solution and explanation is attached.
Explanation:
Answer:
Explanation:
Given that, .
Mass of car is
M = 1300kg
Velocity of car
V = 80km/h = 80 × 1000/3600
V = 22.22m/s
Calculate the kinetic energy of the vehicle as follows:
K.E = ½ MV²
K.E = ½ × 1300 × 22.22²
K.E = 320,987.65 J
Given that,
Enthalpy is 45MJ / kg
h = 45MJ / kg
Then, enthalpy is given as.
Enthalpy = Energy / mass
h = E / m
45 × 10^6 = 320,987.65 / m
m = 320,987.65 / 45 × 10^6
m = 7.133 × 10^-3 kg
m = 7.133 mg
Also, given that, density is 680kg/m³
Density is given as
Density = mass / Volume
ρ = m / v
Then, v = m / ρ
v = 7.133 × 10^-3 / 680
v = 1.049 × 10^-5 m³
We know that
1mL = 10^-6 m³
Therefore,
v = 1.049 × 10^-5 m³ × 1mL / 10^-6m³
v = 10.49 mL
Answer:
import java.io.*;
import java.util.Scanner;
public class CountWordsInFile {
public static void main(String[] args) throws IOException {
Scanner keyboard = new Scanner(System.in);
System.out.print("Enter file name: ");
String fileName = keyboard.next();
File file = new File(fileName);
try {
Scanner scan = new Scanner(file);
int count = 0;
while(scan.hasNext()) {
scan.next();
count += 1;
}
scan.close();
System.out.println("Number of words: "+count);
} catch (FileNotFoundException e) {
System.out.println("File " + file.getName() + " not present ");
System.exit(0);
}
}
}
Answer:
Explanation:
In the development of a torsion formula for a circular shaft, the following assumptions are made: Material of the shaft is homogeneous throughout the length of the shaft. Shaft is straight and of uniform circular cross section over its length. Torsion is constant along the length of the shaft.