If Biker 1 has less mass than Biker 2 it the follows that biker 1 has a greater acceleration than Biker 2.
<h3>What is the Newton second law?</h3>
The Newton second law gives the relationship between the force and the acceleration. We know that; acceleration = Force/mass.
Now if Biker 1 has less mass than Biker 2 it the follows that biker 1 has a greater acceleration than Biker 2.
Learn more about Newton's law:brainly.com/question/27573481
#SPJ1
Answer:
it will disperse into many different colors
Refer to the diagram shown below.
Still-water speed = 9.5 m/s
River speed = 3.75 m/s down stream.
The velocity of the swimmer relative to the bank is the vector sum of his still-water speed and the speed of the river.
The velocity relative to the bank is
V = √(9.5² + 3.75²) = 10.21 m/s
The downstream angle is
θ = tan⁻¹ 3.75/9.5 = 21.5°
Answer: 10.2 m/s at 21.5° downstream.
Answer:
A longitudinal wave is a wave where the movement of the medium is in the same direction as the wave. On the other hand, a transverse wave is a wave where the movement of the medium is at a right angle to the wave direction.
Explanation:i got this right on a quiz so i know its right
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.