Answer: There are number of electrons.
Explanation:
We are given 50 Coulombs of charge and we need to find the number of electrons that can hold this much amount of charge. So, to calculate that we will use the equation:
where,
n = number of electrons
Charge of one electron =
Q = Total charge = 50 C.
Putting values in above equation, we get:
Hence, there are number of electrons.
Answer:The energy of the wave by a factor of 4
Explanation:
Answer:
The volume of water is 139 mL.
Explanation:
Due to the Law of conservation of energy, the heat lost by coffee is equal to the heat gained by the water, that is, the sum of heats is equal to zero.

The heat (Q) can be calculated using the following expression:

where,
c is the specific heat of each substance
m is the mass of each substance
ΔT is the difference in temperature for each substance
The mass of coffee is:

Then,

The volume of water is:

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.
A 'displacement' always consists of a magnitude and a direction. The two cars you just described have displacements with the same magnitude ... 5 km. But if they didn't both drive in the same direction, then their displacements are different.
Remember:
-- 10 m/s² up and 10 m/s² down are different accelerations
-- 30 mph East and 30 mph West are the same speed but different velocity.
-- 5 km North and 5 km South are the same distance but different displacement.