Benedict's solution is used to test simple sugars, such as glucose. It is blue solution, when sugar is present, it turns to orange / brick red. Depends on the concentration of sugar.
The density is 3 because the density remains the same.
Actually mass and weight are two different things but most people did not understand the difference between them. And they are used synonymously on the earth. Mass is the measure of the amount of matter and weight is the measure of how the force of gravity acts on the mass that is Weight = mass x force of gravity. And they are also directly proportional to each other that is also the reason both terms are used synonymously.
It can be a compound or a single element. An element is a pure substance that cannot be separated into simpler substances by chemical or physical means. There are about 117 elements, but carbon, hydrogen, nitrogen and oxygen are only a few that make up the largest portion of Earth.
I would say pure substances
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;
}