Gain enough kinetic energy to get past each other. Ad you heat up a substance, the temperature increases as does the kinetic energy of the particles. At a point the temperature of the substance will stop increasing. The energy is now being used to increase the potential and move the particles further apart.
c is the answer a benzene
Filtration is useful for separating sediments that are carried in water for easy drinking without the risk of disease - an example of this is a water purifier
Hey there!
Oxygen needs two bonds to have a valence orbital of s²p⁶.
In a hexanal molecule, oxygen has a double bond with one carbon atom.
A double bond is when two pairs of electrons are being shared.
So your answer is b. 2.
Hope this helps!
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;
}