summaryrefslogtreecommitdiff
path: root/506/CH2/EX2.1.a/Example2_1a.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /506/CH2/EX2.1.a/Example2_1a.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '506/CH2/EX2.1.a/Example2_1a.sce')
-rwxr-xr-x506/CH2/EX2.1.a/Example2_1a.sce17
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