A box is sliding up an incline that makes an angle of 14.0° with respect to the horizontal. the coefficient of kinetic friction between the box and the surface of the incline is 0.180. the initial speed of the box at the bottom of the incline is 2.20 m/s. how far does the box travel along the incline before coming to rest?
Answer:
11:10 will be the time. reflection causes the object to be flipped when you see its image at the mirror
Answer:
Explanation:
First of all, let's convert from nanometres to metres, keeping in mind that
So we have:
Now we can convert from metres to centimetres, keeping in mind that
So, we find:
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.