Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
// Program Starts here
#include<iostream>
using namespace std;
int main ()
{
// Declare Variables
int quarter, dimes, nickel, cent;
// Enter values for each
cout<<"Quarter: ";
cin>>quarter;
cout<<"Dimes: ";
cin>>dimes;
cout<<"Nickels: ";
cin>>nickel;
/*
In the United States, these coins have the following values
Quarter = 25 cents
Done = 10 cents
Nickel = 5 cent
Total cent is calculated below
*/
cent = 25 * quarter + 10 * dimes + 5 * nickel;
// Print Total
cout<<"The coins are worth "<<cent<<" cents";
return 0;
}
Answer:
The molar solubility of carbon dioxide gas is
.
Explanation:
Henry's law states that the amount of gas dissolved or molar solubility of gas is directly proportional to the partial pressure of the liquid.
To calculate the molar solubility, we use the equation given by Henry's law, which is:

where,
= Henry's constant = 
= partial pressure of carbonated drink

where = p = Total pressure = 0.400 atm
= mole fraction of 

Putting values in above equation, we get:

Hence, the molar solubility of carbon dioxide gas is
.
The answer for this question is B) Ionization and Dissociation because Dissociation happens, charged particles form (ions), and since the ions didn't exist before the substance was dissolved, this process is called IONIZATION. It is the process that involves the formation of ions, a conversion of a substance into ions.
Answer:
b. unsaturated
.
Explanation:
Hello there!
In this case, according to the given information, it turns out necessary for us to bear to mind the definition of each type of solution:
- Supersaturated solution: comprises a large amount of solute at a temperature at which it will be able to crystalize upon standing.
- Unsaturated solution: is a solution in which a solvent is able to dissolve any more solute at a given temperature.
- Saturated solution can be defined as a solution in which a solvent is not capable of dissolving any more solute at a given temperature.
In such a way, since 20 grams of the solute are less than the solubility, we infer this is b. unsaturated, as 33.3 grams of solute can be further added to the 100 grams of water.
Regards!