Computer Science, asked by Suchismita28, 1 year ago

how to find electronic configuration using Java program​

Answers

Answered by devasya619
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 Anonymous
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