diff options
author | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
commit | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch) | |
tree | eb72842d800ac1233e9d890e020eac5fd41b0b1b /3428/CH23/EX14.23.30/Ex14_23_30.sce | |
parent | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff) | |
download | Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2 Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip |
updated the code
Diffstat (limited to '3428/CH23/EX14.23.30/Ex14_23_30.sce')
-rw-r--r-- | 3428/CH23/EX14.23.30/Ex14_23_30.sce | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/3428/CH23/EX14.23.30/Ex14_23_30.sce b/3428/CH23/EX14.23.30/Ex14_23_30.sce index 157ef4c65..47a2f1098 100644 --- a/3428/CH23/EX14.23.30/Ex14_23_30.sce +++ b/3428/CH23/EX14.23.30/Ex14_23_30.sce @@ -1,10 +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_T=0.1354 //(N)
+V_T=42.20 //(ml)
+V_S=50.00 //(ml)
//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)
+N_S=(N_T*V_T)/V_S //(N)
+M_S=(N_S/2) //(M)
disp(M_S,'Molarity of H_2SO_4')
|