diff options
Diffstat (limited to '1427/CH1/EX1.14/1_14.sce')
-rw-r--r-- | 1427/CH1/EX1.14/1_14.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH1/EX1.14/1_14.sce b/1427/CH1/EX1.14/1_14.sce new file mode 100644 index 000000000..470b11f10 --- /dev/null +++ b/1427/CH1/EX1.14/1_14.sce @@ -0,0 +1,8 @@ +//ques-1.14
+//Calculating Hardness of water sample
+clc
+V=100;//volume of water sample (in mL)
+v=12;//volume of HCl neutralized
+N=0.12;//normality of HCl
+h=(v*N)*(1000/V)*50;//hardness
+printf("The hardness is temporary with value %.0f ppm.",h);
|