Answer: 12Mg/h
Explanation:
Let the spring is compressed by a distance x,before the lift stops,then
Mg(h+x)= 1/2 kx^2 ............... 1
Kx - Mg = M ( 5g ) ............ 2
Make x the subject in equation 2
Kx = 5Mg + Mg
Kx = 6Mg
x = 6Mg/k ............ 3
Put equation 3 into 1
Mg ( h + x ) = 1/2 kx^2
Mgh + Mgx = 1/2kx^2
Mgh + Mg × 6Mg/k = 1/2k × ( 6Mg/k )^2
Mgh + Mg× 6Mg/k = 1/2k 36M^2g^2/ k^2
h =18Mg/k - 6Mg/h
K = 12Mg/h
The thermal efficiency of an engine is

where
W is the work done by the engine
Q is the heat absorbed by the engine to do the work
In this problem, the work done by the engine is W=200 J, while the heat exhausted is Q=600 J, so the efficiency of the machine is
Answer:
Add items to the box
Explanation: I did the test
They travel the way the wind is blowing and also towards the shoreline
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.