The average speed is the ratio between the total space and the total time of the motion:

The total space is

while the total time is

So, the average velocity is

We can also rewrite it in m/s. The total space is

, while the time is

, and so
It would be B, like charges repel and unlike charges attract.
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.
Particles that are closely packed but spaced apart enough to move over one another are called plasma. Option C is correct.
<h3>What is the plasma state of matter?</h3>
Plasma is a state of matter wherein particles are tightly packed but are far enough apart to slide over one another.
The following conditions are followed by the plasma state.
Hence, option C is correct.
To learn more about the plasma state refer;
brainly.com/question/5496865
#SPJ1