Answer:
Explanation:
<u>1) Convert the mass of water into number of moles</u>
- Molar mass of water: 18.015 g/mol
- Number of moles, n = mass in grams / molar mass
n = 255 g / 18.015 g/mol = 14.15 mol
<u>2) Use the formula E = n × ΔH vap</u>
This is, you have to multiply the molar ΔH vaporization by the number of moles to find the total energy to boil the given amount of water.
- E = 14.15 mol × 40,650 J/mol = 575,395.5 J
<u>3) Round to the correct number of significant figures.</u>
The mass of water is the measurement with the least number of significant figures (3), so you must report the answer with 3 significant figures,
Answer:
please mark as brainliest!!
Explanation:
// C++ program to print initials of a name
#include <bits/stdc++.h>
using namespace std;
void printInitials(const string& name)
{
if (name.length() == 0)
return;
// Since touuper() returns int, we do typecasting
cout << (char)toupper(name[0]);
// Traverse rest of the string and print the
// characters after spaces.
for (int i = 1; i < name.length() - 1; i++)
if (name[i] == ' ')
cout << " " << (char)toupper(name[i + 1]);
}
// Driver code
int main()
{
string name = "prabhat kumar singh";
printInitials(name);
return 0;
}