Answer:
Part A:
In W-h:
Energy Stored=1440 W-h
In Joules:

Part B:
In W-h:
Energy left=240 W-h
In Joules:
Energy left= 8.64*10^5 J
Explanation:
Part A:
We are given rating 120A-h and voltage 12 V
Energy Stored= Rating*Voltage (Gives us units W-h)
Energy Stored=120A-h*12V
Energy Stored=1440 W-h
Converting it into joules (watt=joules/sec)
Energy Stored=
Energy Stored=5184000 Joules

Part B:
Energy used by lights for 8h=150*8
Energy used by lights for 8h=1200W-h
Energy left= Energy Stored(Calculated above)- Energy used by lights for 8h
Energy left=1440-1200
Energy left=240 W-h
Energy left=
Energy left=864000 Joules
Energy left= 8.64*10^5 J
Answer:
T=kg·m^2/s^2
Explanation:
T = kg (m^2/s^2) m^3 /m^3
Here I wrote down the unit for every dimension.
T=kg m^2 / s^2
m^3 is divided between m^3, this is equal to 1.
Result: T=kg·m^2/s^2
PD: I'm not sure if this is what you ask for. I hope it helps
Answer: 1. Hand Plane
2. Rift Sawn
Explanation: I'm not Sure tho hope it helps
Answer & Explanation:
//written in java
public class Main {
public static void main(String[] args) {
//declare a char variable for a, b, c
char a;
char b;
char c;
//assign a b and c
//a b and c can be replaced for with
// '#', '$', '%', then with '1', '2', '3'
// for further testing
a = 'x';
b = 'y';
c = 'z';
//output for all possible combination for a, b, c.
System.out.println("" + a + b + c + " " + a + c + b + " " + b + a + c +
" " + b + c + a + " " + c + a + b + " " + c + b + a);
}
}