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;
}
<span>3) which is an example of a physical change
</span><span>a) grinding pepper</span>
M = n / V
Where, M is molarity (M or mol/L), n is number of moles of the solute (mol) and V is volume of the solution (L).
Here the solute is KNO₃.
The given molarity is 1.3 M
This means 1L of solution has 1.3 moles of KNO₃.
Hence moles in 600 mL = 1.3 M x 0.6 L = 0.78 mol
Therefore to make 1.3 M KNO₃ solution, needed moles of KNO₃ is 0.78 mol
L

mol/dm³ is measure for molarity
Answer:
Got what wrong? A question?