The greater amount is the solvent and the lesser amount is the solute.
Hence ethanol(200g) which is the greater amount is the solvent here.
And water (145g) which is lesser is the solute here.
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;
}
Answer:
0.50 mol
Explanation:
The half-life is <em>the time required for the amount of a radioactive isotope to decay to half that amount</em>.
Initially, there are 8.0 moles.
- After 1 half-life, there remain 1/2 × 8.0 mol = 4.0 mol.
- After 2 half-lives, there remain 1/2 × 4.0 mol = 2.0 mol.
- After 3 half-lives, there remain 1/2 × 2.0 mol = 1.0 mol.
- After 4 half-lives, there remain 1/2 × 1.0 mol = 0.50 mol.
Answer: decomposition
Explanation: one molecule forms tro molecules
Answer:
the separator is a centrifugal device that separates milk into cream and skimmed
I hope it helps you