summaryrefslogtreecommitdiff
path: root/3428/CH23/EX14.23.30
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3428/CH23/EX14.23.30
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 '3428/CH23/EX14.23.30')
-rw-r--r--3428/CH23/EX14.23.30/Ex14_23_30.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3428/CH23/EX14.23.30/Ex14_23_30.sce b/3428/CH23/EX14.23.30/Ex14_23_30.sce
new file mode 100644
index 000000000..157ef4c65
--- /dev/null
+++ b/3428/CH23/EX14.23.30/Ex14_23_30.sce
@@ -0,0 +1,10 @@
+//Section-14,Example-2,Page no.-PC.129
+//To find the Molarity of given sulphuric acid solution.
+clc;
+N_T=0.1354
+V_T=42.20
+V_S=50.00
+//N_S=N_H_2SO_4(let) and M_S=M_H_2SO_4
+N_S=(N_T*V_T)/V_S
+M_S=(N_S/2)
+disp(M_S,'Molarity of H_2SO_4')