summaryrefslogtreecommitdiff
path: root/1427/CH34/EX34.13/34_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH34/EX34.13/34_13.sce')
-rw-r--r--1427/CH34/EX34.13/34_13.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH34/EX34.13/34_13.sce b/1427/CH34/EX34.13/34_13.sce
new file mode 100644
index 000000000..ebf52f7e7
--- /dev/null
+++ b/1427/CH34/EX34.13/34_13.sce
@@ -0,0 +1,8 @@
+//ques-34.13
+//Calculating molar absorptivity of a solution
+clc
+C=10^-4;//concentration (in M)
+A=0.2;//absorbance
+l=2.5;//thickness (in cm)
+EC=A/(C*l/10);
+printf("The molar absorptivity of the solution is %d L/mol/cm.",EC);