summaryrefslogtreecommitdiff
path: root/1427/CH24/EX24.3/24_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH24/EX24.3/24_3.sce')
-rw-r--r--1427/CH24/EX24.3/24_3.sce7
1 files changed, 7 insertions, 0 deletions
diff --git a/1427/CH24/EX24.3/24_3.sce b/1427/CH24/EX24.3/24_3.sce
new file mode 100644
index 000000000..de8e16924
--- /dev/null
+++ b/1427/CH24/EX24.3/24_3.sce
@@ -0,0 +1,7 @@
+//ques-24.3
+//Finding molality of a solution
+clc
+x=2/100;//mole fraction of solute
+X=1-x;//mole fraction of solvent
+m=x/(X*18/1000);
+printf("The molarity of the solution is %.3f mol/kg.",m);