to answer all three of those in one sentence; Potassium is an element used in the body for some functions, it is commonly found in bananas.
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
// Program Starts here
#include<iostream>
using namespace std;
int main ()
{
// Declare Variables
int quarter, dimes, nickel, cent;
// Enter values for each
cout<<"Quarter: ";
cin>>quarter;
cout<<"Dimes: ";
cin>>dimes;
cout<<"Nickels: ";
cin>>nickel;
/*
In the United States, these coins have the following values
Quarter = 25 cents
Done = 10 cents
Nickel = 5 cent
Total cent is calculated below
*/
cent = 25 * quarter + 10 * dimes + 5 * nickel;
// Print Total
cout<<"The coins are worth "<<cent<<" cents";
return 0;
}
The acronym 'DNA' stands for deoxyribonucleic acid.
DNA is used to 'code' the genetic makeup of all living organisms, and is found inside the nucleus of the cell(Eukaryotes) or just floating in the cytoplasm of the cell(Prokaryotes). DNA is made up of 4 different pairs of base molecules(nucleotides) that are slightly different from another. The similar molecule structure RNA(ribonucleic acid) differs from DNA in that RNA nucleotides are just slightly different from the nucleotides of DNA. This difference is that RNA nucleotides have a hydroxide group(OH) where the DNA nucleotides just have a hydrogen atom.
Because the DNA nucleotide doesn't have the hydroxide group it has one less oxygen than RNA nucleotides do. This is where DNA derives the prefix "deoxy-," meaning "without oxygen."
The prefix "ribo-" is given to molecules with a certain configuration of a set of 3 consecutive but not necessarily contiguous CHOH(asymmetric) groups.
The combined form "nucleo-" is used to imply something that has to do with the nucleus, such as the nucleus of a cell where DNA is stored in Eukaryotes.
And finally, the ending of the acronym: "acid." DNA is an acid because the 4 nucleotides each contain a phosphate group, which are acidic.
And thus, we get our answer: deoxyribonucleic acid, and the meaning:
deoxy-ribo-nucleic acid
(without oxygen) + (has 3 CHOH groups) + (in/of the nucleus) + (acidic)
Thus, DNA is a molecule is basically an acidic molecule residing in the nucleus with 3 CHOH groups and is missing oxygen atoms.
I know this isn't really what you're looking for, but honestly I had a great time doing a little research into the name!
Hope this explains it a little! c;
Answer:

Explanation:
B.

BALANCED. 7C, 16H, and 22O on each side of equation.
A.

NOT BALANCED. 7C on left and 6C on right.
C.

NOT BALANCED. 16H on left and 10H on right.
D.

NOT BALANCED. 7C on left and 14C on right.
It is known that chemistry is a BIG part of our everyday lives. You can find chemistry in daily life in foods you eat, air you breathe, soap, your emotions and literally every object you can see or touch. For example, Chemistry explains how food changes as you cook it, how it rots, how to preserve food, how your body uses the food you eat, and how ingredients interact to make food.
Hope it helps! :)