Answer:
C .96 meters
Explanation: i just had this question
<span>Then, since the peak wavelength of the star Beta is 200nm, use Wein law and round 200 to the nearest WHOLE NUMBER. Hope that helps. </span>
There are two force acting on an object that is being lifted. (1) the weight of the car, (2) the upward force. The difference of these force should be equal to the product of the mass and the acceleration. (This is the content of Newton's 2nd Law of Motion). If we let the lifting force be F,
F - (830)(9.8) = (830)(3.8)
The value of F from the equation is 11288 N.
Answer:
18.2145 meters
Explanation:
Using the conservation of momentum, we have that:

m1 = m1' is the mass of the astronaut, m2=m2' is the mass of the satellite, v1 and v2 are the inicial speed of the astronaut and the satellite (v1 = v2 = 0), and v1' and v2' are the final speed of the astronaut and the satellite. Then we have that:


The negative sign of this speed just indicates the direction the astronaut goes, which is the opposite direction of the satellite.
If the astronaut takes 7.5 seconds to come into contact with the shuttle, their initial distance is:

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.