Answer:
9)a
10) I think true
11)b
Explanation:
9)a. because it's told that the car is slowing down, the sum of the forces that are towards left, should be more than the ones that are towards right. if the car was gaining speed, "b" would have been correct. and if it was told that the car is moving without a change in the speed, "c" would have been correct.
10) if a moving object has a change of speed or direction, it would have an acceleration. now if a moving object experiences an unbalanced force, it'd either slow down, gain speed or change direction, and in all of the three possibilities it'd have an acceleration.
11) upward and downward forces are equal, and the sum of them would be 0N(because they have opposite directions). so they negate each other.
and the rightward force is 5N more than the leftward force. so the Net Force would be 5N.
-30+30-10+15=5N
if it is unclear or you need more explanation, ask freely.
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:
a)
, b)
, c) 
Explanation:
a) The change in the gravitational potential energy of the marble-Earth system is:


b) The change in the elastic potential energy of the spring is equal to the change in the gravitational potential energy, then:

c) The spring constant of the gun is:




Answer:
<h2>23.33 kg </h2>
Explanation:
The mass of the object can be found by using the formula

f is the force
a is the acceleration
From the question we have

We have the final answer as
<h3>23.33 kg</h3>
Hope this helps you
The displacement of the object as determined from the velocity-time graph is 562.5 m.
<h3>What is a velocity-time graph?</h3>
A velocity-time graph is a graph of the velocity of an object plotted in the vertical or y-axis of the graph against the time taken on the horizontal or x-axis.
The displacement of an object can be obtained from its velocity-time graph by calculating the total area under the graph.
The total area under the graph = area of triangle + area of rectangle
Area of triangle = b*h/2 =
Area of triangle = 25 * (35 - 10)/2 = 312.5 m
Area of rectangle = l * b
Area of rectangle = 10 * 25 = 250 m
Total area = (312.5 + 250) m
Total area = 562.5 m
Therefore, the displacement of the object is 562.5 m
In conclusion, the total area of a velocity-time graph gives the displacement.
Learn more about velocity-time graph at: brainly.com/question/28064297
#SPJ1