diff options
Diffstat (limited to '1427/CH8/EX8.2/8_2.sce')
-rw-r--r-- | 1427/CH8/EX8.2/8_2.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH8/EX8.2/8_2.sce b/1427/CH8/EX8.2/8_2.sce new file mode 100644 index 000000000..2b81d8985 --- /dev/null +++ b/1427/CH8/EX8.2/8_2.sce @@ -0,0 +1,8 @@ +//ques-8.2
+//Calculating saponification of oil
+clc
+m=10;//mass of oil taken (in g)
+v1=25;//volume of N/2 KOH (in mL)
+v2=15;//volume of N/2 HCl (in mL)
+s=((v1-v2)*28)/m;//saponification value
+printf("Saponification value of oil is %d.",s);
|