diff options
Diffstat (limited to '1427/CH34/EX34.25/34_25.sce')
-rw-r--r-- | 1427/CH34/EX34.25/34_25.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH34/EX34.25/34_25.sce b/1427/CH34/EX34.25/34_25.sce new file mode 100644 index 000000000..e803d0ae1 --- /dev/null +++ b/1427/CH34/EX34.25/34_25.sce @@ -0,0 +1,8 @@ +//ques-34.25
+//Calculating concentration of a substance
+clc
+EC=14000;//molar absorptivity
+l=1;//thickness (in cm)
+A=0.85;//absorbance
+C=A/(EC*l);
+printf("The concentration of the given substance is %.7f M.",C);
|