Answer:
14 cm
Explanation:
F = (frac{uv}{u – v})
F = +ve
v = -ve
30 = (frac {25 {times} (-v)}{25 – (-v)})
v = (frac {25 {times} (-v)}{25+v})
v = 14cm
(Note that either negative or positive values go to show the positioning and hence, they are not a strong necessity in your final answer.)
So happy that i could help you!
Now this question could turn out to be easy for you!!
Answer:
Good government
Explanation:
Many people will think its natural resources but its not. Africa is a proof. They have resources but leadership is what makes most of their countries 3rd world. #BADGOVERNANCE
Answer:
between 10 and 15 percent
Explanation:
How to put your load
- First load the heavy
The safe trailer starts loading correctly. Uneven weight can affect steering, brakes and swing control.
In general, 60% of the weight of the load should be in the front half of the trailer and 40% in the rear half (unless the manufacturer indicates something different). When you place the load, you want it to be balanced from side to side, keeping the center of gravity near the ground and on the axle of the trailer.
- Hold your load
After balancing the load, you must hold it in place. An untapped load can move when the vehicle is moving and cause trailer instability.
- Trailer weight
To avoid overloading the trailer, look for the recommended weight rating. It is located on the VIN plate in the trailer chassis, usually on the tongue. Confirm the Gross Vehicle Weight Classification (GVWR) before towing.
GVWR: is the total weight that the trailer can support, including its weight. You can also find this number as the Gross Trailer Weight (GTW). The weight of the tongue should be 10-15% of the GTW.
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.