summaryrefslogtreecommitdiff
path: root/992/CH3/EX3.7
diff options
context:
space:
mode:
Diffstat (limited to '992/CH3/EX3.7')
-rwxr-xr-x992/CH3/EX3.7/Ex3_7.sce10
-rwxr-xr-x992/CH3/EX3.7/ex3_7.txt10
-rwxr-xr-x992/CH3/EX3.7/ex3_7ans.txt3
3 files changed, 23 insertions, 0 deletions
diff --git a/992/CH3/EX3.7/Ex3_7.sce b/992/CH3/EX3.7/Ex3_7.sce
new file mode 100755
index 000000000..b6d4d5664
--- /dev/null
+++ b/992/CH3/EX3.7/Ex3_7.sce
@@ -0,0 +1,10 @@
+
+//Exa:3.7
+clc;
+clear;
+close;
+//Given:
+dev=100;//in KHz
+mod_f=15;//in KHz
+Bw=2*(dev+mod_f);
+printf("\n Band width required = %f KHz",Bw); \ No newline at end of file
diff --git a/992/CH3/EX3.7/ex3_7.txt b/992/CH3/EX3.7/ex3_7.txt
new file mode 100755
index 000000000..491d7f50d
--- /dev/null
+++ b/992/CH3/EX3.7/ex3_7.txt
@@ -0,0 +1,10 @@
+//Caption:Program to Bandwidth required.
+//Exa:3.7
+clc;
+clear;
+close;
+//Given:
+dev=100;//in KHz
+mod_f=15;//in KHz
+Bw=2*(dev+mod_f);
+printf("\n Band width required = %f KHz",Bw); \ No newline at end of file
diff --git a/992/CH3/EX3.7/ex3_7ans.txt b/992/CH3/EX3.7/ex3_7ans.txt
new file mode 100755
index 000000000..163621aea
--- /dev/null
+++ b/992/CH3/EX3.7/ex3_7ans.txt
@@ -0,0 +1,3 @@
+
+ Band width required = 230.000000 KHz
+ Execution done.