Answer:
time taken by the wave to reach the person is 0.2 s
Explanation:
As we know that the speed of the wave is given as

here we know that the wavelength of the wave is


now speed of the wave is given as


Now time taken by the wave to reach 5 m distance is



<u>Hello and Good Morning/Afternoon</u>:
<em>Original Question: C₂H₅OH + __O₂ → __CO₂ + __ H₂O</em>
<u>To balance this equation</u>:
⇒ must ensure that there is an equal number of elements on both sides of the equation at all times
<u>Let's start balancing:</u>
- On the left side of the equation, there are 2 carbon molecule
⇒ but only so far one on the right side
C<em>₂H₅OH + __O₂ → 2CO₂ + __ H₂O</em>
- On the left side of the equation, there are 6 hydrogen molecules
⇒ but only so far two on the right side
C<em>₂H₅OH + __O₂ → 2CO₂ + 3H₂O</em>
- On the right side of the equation, there are 7 oxygen molecules
⇒ but only so far three on the left side
C<em>₂H₅OH + 3O₂ → 2CO₂ + 3H₂O</em>
<u>Let's check and make sure we got the answer:</u>
C<em>₂H₅OH + 3O₂ → 2CO₂ + 3H₂O</em>
<em> 2 Carbon ⇔ 2 Carbon</em>
<em> 6 Hydrogen ⇔ 6 Hydrogen</em>
<em> 7 Oxygen ⇔ 7 oxygen</em>
<u>Thefore the coefficients in order are</u>:
⇒ 1, 3, 2, 3
<u>Answer: 1,3,2,3</u>
Hope that helps!
#LearnwithBrainly<em> </em>
Answer:
c. 1600J
Explanation:
The loss in potential energy of the boy is given by:

where
m = 40 kg is the mass of the boy
g = 9.8 m/s^2 is the acceleration of gravity
is the total change in the height of the boy (4 metres + 2 cm due to the compression of the spring)
Substituting, we find

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.