summaryrefslogtreecommitdiff
path: root/1427/CH5/EX5.8
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH5/EX5.8')
-rw-r--r--1427/CH5/EX5.8/5_8.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH5/EX5.8/5_8.sce b/1427/CH5/EX5.8/5_8.sce
new file mode 100644
index 000000000..de3fc8964
--- /dev/null
+++ b/1427/CH5/EX5.8/5_8.sce
@@ -0,0 +1,8 @@
+//ques-5.8
+//Calculating pH of NaOH
+clc
+N=0.01;//normality of NaOH
+a=0.01;//hydroxide in NaOH
+b=10^-14/a;//hydrogen in NaOH
+pH=-log10(b);//pH of NaOH
+printf("pH value of given NaOH is %.0f.",pH);