You are on page 1of 8

Midterm Examination

Due Oct 26 at 2pm Points 60 Questions 20


Available Oct 26 at 11am - Oct 26 at 2pm 3 hours Time Limit None

Instructions
Directions:

• Choose the best answer for multiple-choice questions.


• Write the correct answer in fill-in-the-blank in CAPITAL LETTERS.
• Choose TRUE or FALSE in TF questions.
• DO NOT open any browser or computer applications while taking the quiz.
• It will be marked "cheating" once the LMS detected and recorded any opening of other browsers
or applications.
• Good luck and God bless.

This quiz was locked Oct 26 at 2pm.

Attempt History
Attempt Time Score
LATEST Attempt 1 13 minutes 57 out of 60

 Correct answers are hidden.

Score for this quiz: 57 out of 60


Submitted Oct 26 at 11:53am
This attempt took 13 minutes.

Question 1 3 / 3 pts

The analog filters are designed using the


_________________________.
LAPLACE TRANSFORM

Question 2 3 / 3 pts

GNU Octave is easily expandable and customizable

True

False

Question 3 3 / 3 pts

The z-plane uses a ______________ coordinate system.

POLAR

Question 4 3 / 3 pts

Octave has extensive tools for integrating ordinary functions and


manipulating _________________.

POLYNOMIALS
Question 5 3 / 3 pts

• x2 = _________________;
• subplot (2, 2, 2);
• stem (n, x2);
• xlabel ('time');
• ylabel ('Amplitude');
• title ('Unit Step');

n>=0

Question 6 3 / 3 pts

Octave has extensive tools for solving common numerical linear


_________________ problems.

ALGEBRA

Question 7 3 / 3 pts

A z-transform represents complex ____________________-domain.

FREQUENCY
Question 8 3 / 3 pts

Given freqz(b,a,Fs), that Fs means _______________.

SAMPLING FREQUENCY

Question 9 3 / 3 pts

Octave has extensive tools for integrating ordinary differential and


differential-algebraic equations.

True

False

Question 10 3 / 3 pts

Octave has extensive tools for finding the _____________ of nonlinear


equations

ROOTS

Question 11 3 / 3 pts

Octave was written by _____________________ and many others


JOHN W. EATON

Question 12 3 / 3 pts

GNU Octave can use statically loaded modules written in other


languages.

True

False

Question 13 3 / 3 pts

The definition of one-sided and two-sided z-transform is used when the


signal is a _____________ signal.

CAUSAL

Question 14 3 / 3 pts

The Z transform of a discrete-time system X[n] is defined as


______________________.

POWER SERIES
Question 15 3 / 3 pts

The s-plane is arranged in a _____________________ coordinate


system

RECTANGULAR

Question 16 3 / 3 pts

• n = -5:5;
• x1=_____________;
• subplot (2, 2, 1);
• stem (n, x1);
• xlabel ('time');
• ylabel ('Amplitude');
• title ('Unit Impulse');

~n

Question 17 3 / 3 pts

the z-transform deals with _________________ equations, the


z-domain, and the z-plane.

DIFFERENCE
Question 18 3 / 3 pts

Given the code:

b=[1 -1 1 0 3]

a= [1 -2 3 0 -1]

roots(a)

roots(b)

___________________; (graph the z-plane)

zplane(b,a)

Incorrect 0 / 3 pts
Question 19

• x = [-1 3 -1 -2];
• h = [-2 2 0 -1 1];
• y = ____________________
• stem (y)
• axis ([-4 10 -10 10])
• grid on
• xlabel ('Time')
• ylabel ('Amplitude')
• title ('Discrete Convolution')

conv(x,h)
Question 20 3 / 3 pts

• t=0:0.01:1;
• a=2;
• b= _______________________________.
• stem (t, b);
• xlabel ('time');
• ylabel('Amplitude');
• title ('Square Wave');

a*square(2*pi*2*t);

Quiz Score: 57 out of 60

You might also like