<span>Wave energy is an idea that Robert Hutchings Goddard introduced in his “Further Developments” to his research "A Method of Reaching Extreme Altitudes" </span>
I think frequency it sounds like the correct answer but I am not completely sure if I am correct
Answer:
9.3m/s
Explanation:
Based on the law of conservation of momentum
Sum of momentum before collision = sum of momentum after collision
m1u1 +m2u2 = m1v1+m2v2
m1 = 8kg
u1 = 15.4m/s
m2 = 10kg
u2 = 0m/s(at rest)
v1 = 3.9m/s
Required
v2.
Substitute
8(15.4)+10(0) = 8(3.9)+10v2
123.2=31.2+10v2
123.2-31.2 = 10v2
92 = 10v2
v2 = 92/10
v2 = 9.2m/s
Hence the velocity of the 10.0 kg object after the collision is 9.2m/s
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: J.J Thomson
Explanation: J. J. Thomson, who discovered the electron in 1897, proposed the plum pudding model of the atom in 1904 before the discovery of the atomic nucleus in order to include the electron in the atomic model.