summaryrefslogtreecommitdiff
path: root/3802/CH1/EX1.3/Ex1_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3802/CH1/EX1.3/Ex1_3.sce')
-rw-r--r--3802/CH1/EX1.3/Ex1_3.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3802/CH1/EX1.3/Ex1_3.sce b/3802/CH1/EX1.3/Ex1_3.sce
new file mode 100644
index 000000000..c2bf5fcc1
--- /dev/null
+++ b/3802/CH1/EX1.3/Ex1_3.sce
@@ -0,0 +1,15 @@
+//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex1_3.sce.
+
+clc;
+clear;
+V=20; //voltage rating of the battery in volts
+I=0.2; //current rating of the battery in amphere
+R=V/I; //from ohm's law
+P=(I^2)*R;
+printf("\nThe value of resistance=%d ohms",R)
+printf("\nPower rating or heat dissipated=%d watts",P)