summaryrefslogtreecommitdiff
path: root/858/CH2/EX2.24/example_24.sce
diff options
context:
space:
mode:
Diffstat (limited to '858/CH2/EX2.24/example_24.sce')
-rwxr-xr-x858/CH2/EX2.24/example_24.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/858/CH2/EX2.24/example_24.sce b/858/CH2/EX2.24/example_24.sce
new file mode 100755
index 000000000..d279c1848
--- /dev/null
+++ b/858/CH2/EX2.24/example_24.sce
@@ -0,0 +1,12 @@
+clc
+clear
+printf("example 2.24 page number 80\n\n")
+
+//to find amount of silver deposited
+I=3 //in Ampere
+t=900 //in s
+m_eq=107.9 //in gm/mol
+F=96500;
+
+m=(I*t*m_eq)/F;
+printf("mass = %f gm",m)