Answer:
Explanation:
kenetic is made for thermal things
Answer:
The system loses 90 kJ of heat
Explanation:
We can answer the question by using the 1st law of thermodynamics, which states that:

where
is the change in internal energy of the system
is the heat absorbed by the system (positive if absorbed, negative if released by the system)
is the work done by the system (positive if done by the system, negative if done by the surrounding on the system)
In this problem, we have:
is the work done (negative, because it is done by the surrounding on the system)
is the increase in internal energy
Using the equation above, we can find Q, the heat absorbed/released by the system:

And the negative sign means that the system has lost this heat.
Answer:
#include <iostream>
#include <vector>
using namespace std;
int main() {
const int NUM_GUESSES = 3;
vector<int> userGuesses(NUM_GUESSES);
int i = 0;
int uGuess = 0;
for(i = 0; i <= userGuesses.size() - 1; i++){
cin >> uGuess;
userGuesses.at(i) = uGuess;
}
cout << endl;
return 0;
}
Explanation:
First inbuilt library were imported. Then inside the main( ) function, 3 was assigned to NUM_GUESSES meaning the user is to guess 3 numbers. Next, a vector was defined with a size of NUM_GUESSES.
Then a for-loop is use to receive user guess via cin and each guess is assigned to the vector.
Answer:
I am pretty sure its the second one but I could be wrong sorry if I am.
Explanation:
:D