Answer:
When acceleration is zero (that is, a = dv/dt = 0), rate of change of velocity is zero. That is, acceleration is zero when the velocity of the object is constant. so probably D
Explanation:
D
A resultante das duas forças será zero, já q os sentidos são opostos e sãos iguais em módulo, elas se anulam. Logo, se a força resultante é zero, e F=ma, aceleração também será igual a zero.
I have a a work sheet to do and i have choices for the diffrent words,
<span>A:m </span>
<span>B:s </span>
<span>C:m/s </span>
<span>D:m/s2 </span>
<span>E:kg </span>
<span>F:kg m/s </span>
<span>G:N </span>
<span>H:m/s north </span>
<span>so can you help me match the words with there answers</span>
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.