blob: 0831b89fd2959b0bc59a72473dacae8feef48710 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clear
//Given
a=12
b=7
t=2
//Calculation
e=((a*t)+b)*10**-3
//Result
printf("\n (i) Magnitude of induced emf is %0.3f mV", e*10**3)
printf("\n (ii) The current induced in the coil will be anticlockwise")
|