blob: fe9d10124924a042594f2276c689386f0a56c7c5 (
plain)
1
2
3
4
5
6
7
8
|
//ques-8.1
//Calculating acid value of a lubricating oil
clc
m=100;//mass of oil used (in g)
v=5;//volume of KOH (in mL)
n=1/20;//normality of KOH
a=(v*10*n*5.6)/m;//acid value
printf("Acid value required is %.2f.",a);
|