Sodium has has 11 protons, 11 electrons and 12 neutrons.
<h3>What is the periodic table?</h3>
The periodic table shows the elements as they are arranged in increasing atomic number. The elements on the left hand side of the table are metals. Those on the right hand side of the table are mostly nonmetals.
A element in the first column is sodium;
The element Na is called sodium and it belongs to group 1 elements. It has 11 protons, 11 electrons and 12 neutrons.
Learn ore about sodium:brainly.com/question/24010534
#SPJ1
A physical exothermic process
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;
}