1 micro gram of Strontium-90 has an activity of
0.0000053 terabecquerels (TBq),
Explanation:
Given information denotes that .,one gram of Strontium-90 has an activity of 5.3 terabecquerels (TBq)
the activity of 1 micro gram is
1 gram = 1,000,000 micro gram has activities of 5.3 terabecquerels
therefore 1 micro gram has the activity of (5.3 ÷ 1,000,000 = 0.0000053 )
= ![(5.3 ÷ 1,000,000 = 0.0000053 )](https://tex.z-dn.net/?f=%285.3%20%C3%B7%20%201%2C000%2C000%20%3D%200.0000053%20%29)
Hence ., 1 micro gram of Strontium-90 has an activity of
0.0000053 terabecquerels (TBq),
Answer:
the surface heat-transfer coefficient due to natural convection during the initial cooling period. = 4.93 w/m²k
Explanation:
check attachement for answer explanation
C. seems like the best answer. i may be wrong so don’t quote me on that
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<
The component of a regenerative vapor power cycle that permits only liquid to pass through to a region of lower pressure is a Valve/trap.
<h3>What is vapor?</h3>
- In physics, a substance in the gas phase at a temperature lower than its critical temperature is referred to as a vapor or vapor.
- This means that the vapor can be condensed to a liquid by increasing the pressure on it without decreasing the temperature.
- An aerosol is distinct from a vapor.
- A suspension of minute liquid, solid, or both types of particles in a gas is known as an aerosol.
<h3>Why does vapor form?</h3>
- Evaporation or sublimation are two processes that can be used to create it.
- Unlike clouds, fog, or mist, which are only suspended drops of liquid water in the atmosphere, watevaporur is a gas and cannot be seen.
- In the atmosphere, water vapor frequently exists below the boiling point.
Learn more about vapor here:
brainly.com/question/14578189
#SPJ4