diff options
Diffstat (limited to '3769/CH27/EX27.12')
-rw-r--r-- | 3769/CH27/EX27.12/Ex27_12.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3769/CH27/EX27.12/Ex27_12.sce b/3769/CH27/EX27.12/Ex27_12.sce new file mode 100644 index 000000000..09d7cef6e --- /dev/null +++ b/3769/CH27/EX27.12/Ex27_12.sce @@ -0,0 +1,14 @@ +clear +//Given +B=49 +Ie=12 //mA +Ib=240 //microA + +//Calculation +A=(B/1+B)*10**-2 +Ic=A*Ie +Ic1=B*Ib + +//Result +printf("\n The value of Ic using A is %0.3f mA",Ic) +printf("\n The value of Ic using B is %0.3f mA",Ic1*10**-3) |