Answer:
chemical
Explanation:
It is breaking down the molecules. That's chemistry
A volcano is formed when magma (Lava) spews up from deep within the earth. After each eruption the Volcano gets bigger and bigger, so basically after periods of time the volcano will get larger. Lava will rise in cracks in the earth or weak spots in the earths crust. The pressure is relieved thus resulting in a volcanic eruptions it forms the new crust and then eventually builds up in that spot making a volcano. They also form in places called hot spots and various other places.
Answer:
180.166889
Explanation:
for every 0.10 pounds is 45.3592 so just multiply that with how many pounds you have and there is your answer please give me the brainliest answer?
:) Hoped this helped!!! Have a good day!!! <3
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;
}