NOC24 EE49 Assignment Week11
NOC24 EE49 Assignment Week11
QUESTION 1:
a. LPF
b. HPF
c. Both a and b
d. None of the above
Correct Answer: a
Detailed Solution: Refer to slide number 81 (Solution 3.4)
______________________________________________________________________________
QUESTION 2:
Correct Answer: b
Detailed Solution: Refer to slide observation in Solution 3.3 (video mod11lec55)
______________________________________________________________________________
NPTEL Online Certification Courses
Indian Institute of Technology Kharagpur
QUESTION 3:
a. ECG channel
b. PCG channel
c. Carotid pulse channel
d. None of the above
Correct Answer: c
Detailed Solution: Refer to solution of Question 3.4 (video mod11lec56)
_____________________________________________________________________________
QUESTION 4:
On an EMG signal, a full-wave rectifier is applied, followed by LPF. If the cut-off frequency of the filter
decreases,
Correct Answer: b
Detailed Solution: Refer slides of solution 4.1 (video mod11lec59)
______________________________________________________________________________
QUESTION 5:
Correct Answer: a
NPTEL Online Certification Courses
Indian Institute of Technology Kharagpur
QUESTION 6:
Correct Answer: b
Detailed Solution: Refer slides of solution 4.4 (video mod11lec60)
_____________________________________________________________________________
QUESTION 7:
How many turns are present in the signal 'y' given by the following MATLAB code:
t = 0:0.001:1;
y =3*sin(pi*7*t) + 2*cos(pi*12*t);
a. 15
b. 7
c. 10
d. 13
Correct Answer: d
Detailed Solution: Plot the signal 'y' and observe that there are 13 times the signal changes its direction
NPTEL Online Certification Courses
Indian Institute of Technology Kharagpur
______________________________________________________________________________
QUESTION 8:
How many zero-crossings are present in the signal 'y' given by the following MATLAB code?
t = 0:0.001:1;
y =3*sin(pi*7*t) + 2*cos(pi*12*t);
a. 8
b. 6
c. 4
d. 10
Correct Answer: b
Detailed Solution: Plot the signal and observe that there are 6 points where the signal crosses the zero
line.
_____________________________________________________________________________
QUESTION 9:
Calculate the RMS value of the signal ‘y’ generated using the following MATLAB code:
t = 0:0.001:1;
y =sin(pi*7*t) + cos(pi*12*t);
(Note: Consider complete signal 'y' for RMS calculation)
a. 1
b. 0.5
c. 0.95
d. 0.65
NPTEL Online Certification Courses
Indian Institute of Technology Kharagpur
Correct Answer: c
Detailed Solution:
t = 0:0.001:1;
y =sin(pi*7*t) + cos(pi*12*t);
sqrt(sum(y.^2)/length(y))
____________________________________________________________________________
QUESTION 10:
Calculate the RMS value of the signal ‘y’ generated using the following MATLAB code:
t = 0:0.001:1;
y = sawtooth(pi*7*t,0.1);
a. 0.3542
b. 0.1780
c. 0.5816
d. 0.707
Correct Answer: c
Detailed solution: sqrt(sum(y.^2)/length(y))
______________________________________________________________________
************END*******