//Caption:Program to calculate deviation to be used.
//Exa:3.8
clc;
clear;
close;
//Given:
Bw=150;//in KHz
mod_f=10;//in KHz
dev=Bw/2 - mod_f;
printf("\n deviation to be used = %f KHz",dev);