<em>The number of protons and electrons in a neutral atom of the element are;</em>
D. 29 protons and 29 electrons
<u>The atomic number of an element is equal to the number of protons in the nucleus of each atom of that element.</u>
<u>Thus copper has an atomic number of 29, all atoms of copper will have 29 protons.</u>
Answer: keep a current from passing out of the wire
Explanation: plastic is an insulator and will not conduct electricity
The molar mass of copper is 63.55 g/mol. So, you convert grams to moles 127.08/63.55 =1.999 moles copper. Now, 1 mole = 6.022e23 atoms, so multiply # of moles by 6.022e23. 1.999 x 6.022e23= # of atoms of copper.
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;
}
One oxygen atom shares two electron with two hydrogen atoms in this way water molecules are formed. The bond between oxygen and hydrogen is covalent bond.
<h3>What is covalent bond ?</h3>
An electron exchange that results in the formation of electron pairs between atoms is known as a covalent bond. Bonding pairs or sharing pairs are the names given to these electron pairs.
Covalent bonding is the stable equilibrium of the attractive and repulsive forces between atoms when they share electrons.
According to the amount of shared electron pairs, there are three different forms of covalent bonds. single covalent bond is one type of covalent bond. covalent double bond and covalent triple bond.
Thus, option B is correct .
To learn more about covalent bond follow the link ?
brainly.com/question/10777799
#SPJ1