diff options
Diffstat (limited to '506/CH2/EX2.1.a/Example2_1a.sce')
-rwxr-xr-x | 506/CH2/EX2.1.a/Example2_1a.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/506/CH2/EX2.1.a/Example2_1a.sce b/506/CH2/EX2.1.a/Example2_1a.sce new file mode 100755 index 000000000..1df38edcb --- /dev/null +++ b/506/CH2/EX2.1.a/Example2_1a.sce @@ -0,0 +1,17 @@ +clear;
+clc
+
+//Example 2a
+//Using Avogadro no. find the numerical value of concentration of atom in Germanium
+
+//Given Values
+
+Av=6.02*(10^23) //Avogadro No.
+m=72.6 //Molar mass of germanium in gm/moles
+d=5.32//density in gm/cm^3
+
+conc = (Av/m)*d //Concentration of atom in germanium
+
+disp('atom/cm^3',conc,'The concentration of germanium atom is=');
+
+//End
\ No newline at end of file |