Answer:
Temperature is also a condition that affects the speed of sound. Heat, like sound, is a form of kinetic energy. Molecules at higher temperatures have more energy, thus they can vibrate faster. Since the molecules vibrate faster, sound waves can travel more quickly.
Answer:
2.7%
Explanation:
Given:
Uncertainty of the speedometer (u)= 2.5km/h
Speed measured at that uncertainty (v) = 92km/h
Percent uncertainty (p) is given as the ratio of the uncertainty to the speed measured then multiplied by 100%. i.e
p = %
p = %
p = 2.7%
Therefore, the percent uncertainty is 2.7%
Answer:
Star formation occurs most rapidly in the spiral arms, where the density of interstellar matter is highest.
Answer:
0 N
Explanation:
suppose, you push a box with 5 N, and another person pushes the box on the opposite side of the box with 5 N, the net force (resultant ) is 0 N, the box will not move if it wasn't moving
hope this helps
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.