how to find electronic configuration using Java program
Answers
Answered by
0
class ElectronConfiguration
{ public static void main(String s[])
{
int atomicNumber = 20;
String electronConfiguration = getElectronConfiguration(atomicNumber); System.out.println(electronConfiguration);
}
public static String getElectronConfiguration(int atomicNumber) {
String result = null;
return result;
}
}
Answered by
0
To calculate an electron configuration, divide the periodic table into sections to represent the atomic orbitals, the regions where electrons are contained.
Groups one and two are the s-block, three through 12 represent the d-block, 13 to 18 are the p-block and the two rows at the bottom are the f-block.
Similar questions