blob: 5d70d2e96355edd2ddd47826d6ea0442f9301598 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clear
//Given
E0=60
R=20.0 //ohm
//Calculation
//
Ev=E0/(sqrt(2))
Iv=Ev/R
//Result
printf("\n (i) A.C ammeter will %0.2f A",Iv)
printf("\n (ii) Average value of a.c over one cycle is zero")
|