blob: f58dfc47d4714495e1b47f656b52d8c06ca98d66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clear
//
//
//
//Variable declaration
dm=1.98*(10**-29)*(1/3) //dipole moment
l=0.92*10**-10 //bond length(m)
//Calculation
ec=dm/l //effective charge(coulomb)
//Result
printf("\n effective charge is %0.2f *10**-19 coulomb",ec*10**19)
printf("\n answer given in the book is wrong")
|