Answer:
D
Explanation:
The answer is D...and if you need explanation you can comment
Answer:
Density is 2
Explanation:
Do the final volume of water divided by the inital
volume of water to get 4
15-11 = 4
Volume = 2
Mass = 8
Then to the equation m/v
8/4 = 2
Density = 2
Answer:
Significant Figures
Explanation:
1) Annotation category: ...
2)RULES FOR SIGNIFICANT FIGURES.
3) All non-zero numbers ARE significant. ...
4)Zeros between two non-zero digits ARE significant. ...
5)Leading zeros are NOT significant. ...
6)Trailing zeros to the right of the decimal ARE significant. ...
7)Trailing zeros in a whole number with the decimal shown ARE significant. 8) to make you happy :) hope this helps you :)
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;
}
Phenolphthalein is an indicator used in chemistry to detect acidic or basic/alkaline solutions.It is often used in the lab as an indicator used to carry out accurate titration using soluble reactants.