Answer:
Atoms of tellurium (Te) have the greatest average number of neutrons equal to 76.
Explanation:
In the periodic table, Elements are represented with their respected symbols. Above the symbol is the elements atomic number which is equal to the number of protons in each atom. Below the symbol is the mass number of that element which is roughly equal to the sum of neutrons and protons of that atom.
To calculate the number of neutrons we can take the difference of Atomic number and mass number:
Number of neutrons = mass number - atomic number
<u>- Tin:</u>
Atomic number = 50
Mass number = 119
Number of neutrons = mass number - atomic number = 119 - 50
Number of neutrons = 69
<u>- Antimony(Sb):</u>
Atomic number = 51
Mass number = 122
Number of neutrons = mass number - atomic number = 122 - 51
Number of neutrons = 71
<u>- Tellurium(Te):</u>
Atomic number = 52
Mass number = 128
Number of neutrons = mass number - atomic number = 128 - 52
Number of neutrons = <u>76</u>
<u>- Iodine(I):</u>
Atomic number = 53
Mass number = 127
Number of neutrons = mass number - atomic number = 127 - 53
Number of neutrons = 74
Here, the greatest number of neutrons is for the atoms of Tellurium(Te).
Answer:
#include <iostream>
#include <vector>
using namespace std;
int main() {
const int NUM_GUESSES = 3;
vector<int> userGuesses(NUM_GUESSES);
int i = 0;
int uGuess = 0;
for(i = 0; i <= userGuesses.size() - 1; i++){
cin >> uGuess;
userGuesses.at(i) = uGuess;
}
cout << endl;
return 0;
}
Explanation:
First inbuilt library were imported. Then inside the main( ) function, 3 was assigned to NUM_GUESSES meaning the user is to guess 3 numbers. Next, a vector was defined with a size of NUM_GUESSES.
Then a for-loop is use to receive user guess via cin and each guess is assigned to the vector.
Answer:
magnet 4
because opposite direction i.e north and south will attract each other