summaryrefslogtreecommitdiff
path: root/1427/CH1/EX1.15
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH1/EX1.15')
-rw-r--r--1427/CH1/EX1.15/1_15.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1427/CH1/EX1.15/1_15.sce b/1427/CH1/EX1.15/1_15.sce
new file mode 100644
index 000000000..480e4c4e4
--- /dev/null
+++ b/1427/CH1/EX1.15/1_15.sce
@@ -0,0 +1,9 @@
+//ques-1.15
+//Calculating hardness of water sample
+clc
+V=100;//volume of water (in mL)
+v1=25;//volume of Sodium carbonate added (in mL)
+v2=10;//volume of Sulphuric acid required (in mL)
+N=1/50;//normality of Sodium carbonate and Sulphuric acid
+h=(v1-v2)*N*(1000/V)*50;//hardness
+printf("The hardness is permanent with value %d ppm.",h);